Stabilise experimental api's

This commit is contained in:
modmuss50 2020-06-04 21:22:30 +01:00
parent 0d474ec430
commit 74492929a5
5 changed files with 2 additions and 10 deletions

View file

@ -1,2 +1,2 @@
archivesBaseName = "fabric-biomes-v1"
version = getSubprojectVersion(project, "0.2.5")
version = getSubprojectVersion(project, "0.2.6")

View file

@ -29,11 +29,9 @@ public final class NetherBiomes {
/**
* Adds a biome to the Nether generator. Biomes must set their own noise values in the {@link Biome.MixedNoisePoint} class for the biome to properly generate.
*
* @deprecated Experimental feature, may be removed or changed without further notice due to potential changes to Nether biomes in subsequent snapshots.
* @param biome The biome to add. Must not be null.
* @see Biome.MixedNoisePoint
*/
@Deprecated
public static void addNetherBiome(Biome biome) {
InternalBiomeData.addNetherBiome(biome);
}

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-object-builder-api-v1"
version = getSubprojectVersion(project, "1.5.2")
version = getSubprojectVersion(project, "1.5.3")
dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev')

View file

@ -30,10 +30,7 @@ import net.fabricmc.fabric.mixin.object.builder.ModelPredicateProviderRegistrySp
* {@link net.minecraft.client.item.ModelPredicateProviderRegistry#get(Item, Identifier)}.</p>
*
* @see net.minecraft.client.item.ModelPredicateProviderRegistry
* @deprecated Experimental feature, may be removed or changed without further notice.
* Vanilla snapshot feature, subject to vanilla change.
*/
@Deprecated
public final class FabricModelPredicateProviderRegistry {
/**
* Registers a model predicate provider that is applicable for any item.

View file

@ -36,10 +36,7 @@ import net.fabricmc.fabric.mixin.object.builder.DefaultAttributeRegistryAccessor
* {@link net.minecraft.entity.attribute.DefaultAttributeRegistry#get(EntityType)}.</p>
*
* @see net.minecraft.entity.attribute.DefaultAttributeRegistry
* @deprecated Experimental feature, may be removed or changed without further notice.
* Vanilla snapshot feature, subject to vanilla change.
*/
@Deprecated
public final class FabricDefaultAttributeRegistry {
/**
* Private logger, not exposed.