diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4b97ea7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# PaperLib Changelog + +## 1.0.1 - Oct 8, 2018 + * Fix version detection + +## 1.0.0 - Oct 7, 2018 + * Initial Release \ No newline at end of file diff --git a/README.md b/README.md index cf04afb..823e16b 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ repositories { Dependency: ```groovy dependencies { - compile "io.papermc:paperlib:1.0.0" + compile "io.papermc:paperlib:1.0.1" } ``` @@ -130,7 +130,7 @@ Dependency: io.papermc paperlib - 1.0.0 + 1.0.1 compile diff --git a/build.gradle.kts b/build.gradle.kts index 5f28562..a9e03c4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ val javadoc by tasks.existing(Javadoc::class) val jar by tasks.existing group = "io.papermc" -version = "1.0.1-SNAPSHOT" +version = "1.0.1" val mcVersion = "1.13.1-R0.1-SNAPSHOT"