Make the create method public on villager profession builder ()

* Make the create method public

* Bump module ver

* Bump main version
This commit is contained in:
i509VCB 2020-05-29 15:34:00 -07:00 committed by GitHub
parent 4a01746c06
commit c6ab3e1b2d
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 = "20w22a"
static def yarnVersion = "+build.1"
}

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-object-builder-api-v1"
version = getSubprojectVersion(project, "1.5.0")
version = getSubprojectVersion(project, "1.5.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();
}