From d30b7fb17506acbb80496f24f8abfe0406909cce Mon Sep 17 00:00:00 2001 From: Alex Laird Date: Sun, 18 Feb 2024 07:45:18 -0600 Subject: [PATCH] Version bump. --- CHANGELOG.md | 8 ++++---- README.md | 6 +++--- build.gradle | 2 +- .../java/com/github/alexdlaird/ngrok/NgrokClient.java | 2 +- src/main/java/overview.html | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80731c4..5bcc329 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/2.2.11...HEAD) +## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/2.2.12...HEAD) -## [2.2.11](https://github.com/alexdlaird/java-ngrok/compare/2.2.10...2.2.11) - 2024-02-17 +## [2.2.12](https://github.com/alexdlaird/java-ngrok/compare/2.2.10...2.2.12) - 2024-02-18 ### Added - Build and stability improvements. @@ -161,9 +161,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## 1.4.x The `1.4.x` branch is where support for Java 8 of `java-ngrok` is passively maintains. It is available through the `java8-ngrok` artifact on [Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.alexdlaird/java8-ngrok/). -## [1.4.7](https://github.com/alexdlaird/java-ngrok/compare/1.4.6...1.4.7) - 2024-02-17 +## [1.4.8](https://github.com/alexdlaird/java-ngrok/compare/1.4.6...1.4.8) - 2024-02-19 ### Added -- Rebased the `1.4.x` branch with Java 8-compatible changes from `main` between `1.6.0` and `2.2.11`. See the [`main changelog`](https://github.com/alexdlaird/java-ngrok/blob/main/CHANGELOG.md) for full details. +- Rebased the `1.4.x` branch with Java 8-compatible changes from `main` between `1.6.0` and `2.2.12`. See the [`main changelog`](https://github.com/alexdlaird/java-ngrok/blob/main/CHANGELOG.md) for full details. - Biggest change is support for `ngrok` v3—including `labels`—and that `ngrok` v3 is installed by default. ## [1.4.6](https://github.com/alexdlaird/java-ngrok/compare/1.4.5...1.4.6) - 2024-02-15 diff --git a/README.md b/README.md index 1bf6d85..85b5f76 100644 --- a/README.md +++ b/README.md @@ -25,14 +25,14 @@ on [Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.a com.github.alexdlaird java-ngrok - 2.2.11 + 2.2.12 ``` #### Gradle ```groovy -implementation "com.github.alexdlaird:java-ngrok:2.2.11" +implementation "com.github.alexdlaird:java-ngrok:2.2.12" ``` If we want `ngrok` to be available from the command line, [pyngrok](https://github.com/alexdlaird/pyngrok) can be @@ -105,7 +105,7 @@ dependency from [Maven Central](https://maven-badges.herokuapp.com/maven-central com.github.alexdlaird java8-ngrok - 1.4.7 + 1.4.8 ``` diff --git a/build.gradle b/build.gradle index b0ad8e2..40cfad5 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } group "com.github.alexdlaird" -version "2.2.11" +version "2.2.12" 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 58f73da..b24d7f4 100644 --- a/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java +++ b/src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java @@ -182,7 +182,7 @@ public class NgrokClient { private static final Logger LOGGER = Logger.getLogger(String.valueOf(NgrokClient.class)); - private static final String VERSION = "2.2.11"; + private static final String VERSION = "2.2.12"; private final JavaNgrokConfig javaNgrokConfig; private final NgrokProcess ngrokProcess; diff --git a/src/main/java/overview.html b/src/main/java/overview.html index 9d9e985..57cafe3 100644 --- a/src/main/java/overview.html +++ b/src/main/java/overview.html @@ -53,14 +53,14 @@

Maven

<dependency> <groupId>com.github.alexdlaird</groupId> <artifactId>java-ngrok</artifactId> - <version>2.2.11</version> + <version>2.2.12</version> </dependency>

Gradle

-implementation "com.github.alexdlaird:java-ngrok:2.2.11"
+implementation "com.github.alexdlaird:java-ngrok:2.2.12"
 
If we want ngrok to be available from the command line, @@ -101,7 +101,7 @@

Java 8

<dependency> <groupId>com.github.alexdlaird</groupId> <artifactId>java8-ngrok</artifactId> - <version>1.4.7</version> + <version>1.4.8</version> </dependency>