From 30eef6abcb0e5ad82461ca3b6130e69022fa7ec7 Mon Sep 17 00:00:00 2001 From: Kevin Wooten Date: Wed, 10 Feb 2021 14:19:08 -0700 Subject: [PATCH] Bump to release version 1.0.0 --- README.md | 6 +++--- build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d249f081..4d856c36 100644 --- a/README.md +++ b/README.md @@ -76,14 +76,14 @@ Download [the latest .jar][dl] or depend via Maven: io.outfoxx typescriptpoet - {RELEASE} + 1.0.0 ``` or Gradle: ```groovy -compile 'io.outfoxx:typescriptpoet:{RELEASE}' +compile 'io.outfoxx:typescriptpoet:1.0.0' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. @@ -109,5 +109,5 @@ License [dl]: https://search.maven.org/remote_content?g=io.outfoxx&a=typescriptpoet&v=LATEST [snap]: https://oss.sonatype.org/content/repositories/snapshots/io/outfoxx/typescriptpoet/ - [kdoc]: https://outfoxx.github.io/typescriptpoet/0.1.0/typescriptpoet/io.outfoxx.typescriptpoet/ + [kdoc]: https://outfoxx.github.io/typescriptpoet/1.0.0/typescriptpoet/io.outfoxx.typescriptpoet/ [javapoet]: https://github.com/square/javapoet/ diff --git a/build.gradle.kts b/build.gradle.kts index fd1c26f8..a3a71d17 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { group = "io.outfoxx" -version = "1.0.0-SNAPSHOT" +version = "1.0.0" description = "A Kotlin/Java API for generating .ts source files." val isSnapshot = "$version".endsWith("SNAPSHOT")