Make villager profession builder create method public [1.15] ()

* Make method public

* bump module version

* Bump main version
This commit is contained in:
i509VCB 2020-05-29 15:38:01 -07:00 committed by GitHub
parent 5ff93ffd61
commit e7a4edb35e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions
build.gradle
fabric-object-builder-api-v1
build.gradle
src/main/java/net/fabricmc/fabric/api/object/builder/v1/villager

View file

@ -12,7 +12,7 @@ plugins {
def ENV = System.getenv()
class Globals {
static def baseVersion = "0.11.0"
static def baseVersion = "0.11.1"
static def mcVersion = "1.15.2"
static def yarnVersion = "+build.1"
}

View file

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

View file

@ -56,7 +56,7 @@ public final class VillagerProfessionBuilder {
* Creates a builder instance to allow for creation of a {@link VillagerProfession}.
* @return A new builder.
*/
static VillagerProfessionBuilder create() {
public static VillagerProfessionBuilder create() {
return new VillagerProfessionBuilder();
}