From bcc350b5883891c829a3459d0c154eae552e682a Mon Sep 17 00:00:00 2001 From: Alex Laird Date: Fri, 20 Aug 2021 14:40:40 -0700 Subject: [PATCH] Release 1.1.0 prep. --- CHANGELOG.md | 6 +++--- README.md | 4 ++-- build.gradle | 2 +- src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java | 2 +- src/main/java/overview.html | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a74493..e7a06f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/1.1.0...HEAD) -## [1.1.0](https://github.com/alexdlaird/pyngrok/compare/1.0.0...1.1.0) - TBD +## [1.1.0](https://github.com/alexdlaird/pyngrok/compare/1.0.0...1.1.0) - 2021-08-20 ### Added -- Support for [`ngrok`'s tunnel definitions](https://ngrok.com/docs#tunnel-definitions) when calling [NgrokClient.connect()](https://javadoc.io/static/com.github.alexdlaird/java-ngrok/1.0.0/com/github/alexdlaird/ngrok/NgrokClient.html#connect(com.github.alexdlaird.ngrok.protocol.CreateTunnel)). If a tunnel definition in `ngrok`'s config matches the given `name`, it will be used to start the tunnel. -- Support for a [`ngrok` tunnel definition](https://ngrok.com/docs#tunnel-definitions) named "java-ngrok-default" when calling [NgrokClient.connect()](https://javadoc.io/static/com.github.alexdlaird/java-ngrok/1.0.0/com/github/alexdlaird/ngrok/NgrokClient.html#connect(com.github.alexdlaird.ngrok.protocol.CreateTunnel)). When `name` is `None` and a "java-ngrok-default" tunnel definition exists it `ngrok`'s config, it will be used. +- Support for [`ngrok`'s tunnel definitions](https://ngrok.com/docs#tunnel-definitions) when calling [NgrokClient.connect()](https://javadoc.io/static/com.github.alexdlaird/java-ngrok/1.1.0/com/github/alexdlaird/ngrok/NgrokClient.html#connect(com.github.alexdlaird.ngrok.protocol.CreateTunnel)). If a tunnel definition in `ngrok`'s config matches the given `name`, it will be used to start the tunnel. +- Support for a [`ngrok` tunnel definition](https://ngrok.com/docs#tunnel-definitions) named "java-ngrok-default" when calling [NgrokClient.connect()](https://javadoc.io/static/com.github.alexdlaird/java-ngrok/1.1.0/com/github/alexdlaird/ngrok/NgrokClient.html#connect(com.github.alexdlaird.ngrok.protocol.CreateTunnel)). When `name` is `None` and a "java-ngrok-default" tunnel definition exists it `ngrok`'s config, it will be used. - `refreshMetrics()` to [NgrokClient](https://javadoc.io/doc/com.github.alexdlaird/java-ngrok/1.1.0/com/github/alexdlaird/ngrok/NgrokClient.html). - Documentation improvements. - Test improvements. diff --git a/README.md b/README.md index 0881a07d..c39acf70 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,14 @@ on [Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.a com.github.alexdlaird java-ngrok - 1.0.0 + 1.1.0 ``` #### Gradle ```groovy -implementation "com.github.alexdlaird:java-ngrok:1.0.0" +implementation "com.github.alexdlaird:java-ngrok:1.1.0" ``` If we want `ngrok` to be available from the command line, [pyngrok](https://github.com/alexdlaird/pyngrok) can be diff --git a/build.gradle b/build.gradle index e462580e..a265da17 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { } group "com.github.alexdlaird" -version "1.0.0" +version "1.1.0" java { withJavadocJar() diff --git a/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java b/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java index 1d96402d..c08e4d7d 100644 --- a/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java +++ b/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java @@ -105,7 +105,7 @@ public class NgrokClient { private static final Logger LOGGER = Logger.getLogger(String.valueOf(NgrokClient.class)); - private static final String VERSION = "1.0.0"; + private static final String VERSION = "1.1.0"; private final JavaNgrokConfig javaNgrokConfig; private final NgrokProcess ngrokProcess; diff --git a/src/main/java/overview.html b/src/main/java/overview.html index 4e2f5c89..85f195f8 100644 --- a/src/main/java/overview.html +++ b/src/main/java/overview.html @@ -18,14 +18,14 @@

Maven

<dependency> <groupId>com.github.alexdlaird</groupId> <artifactId>java-ngrok</artifactId> - <version>1.0.0</version> + <version>1.1.0</version> </dependency>

Gradle

-implementation "com.github.alexdlaird:java-ngrok:1.0.0"
+implementation "com.github.alexdlaird:java-ngrok:1.1.0"
 
If we want ngrok to be available from the command line,