Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Feb 18, 2024
1 parent 7ccd461 commit d30b7fb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ on [Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.a
<dependency>
<groupId>com.github.alexdlaird</groupId>
<artifactId>java-ngrok</artifactId>
<version>2.2.11</version>
<version>2.2.12</version>
</dependency>
```

#### 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
Expand Down Expand Up @@ -105,7 +105,7 @@ dependency from [Maven Central](https://maven-badges.herokuapp.com/maven-central
<dependency>
<groupId>com.github.alexdlaird</groupId>
<artifactId>java8-ngrok</artifactId>
<version>1.4.7</version>
<version>1.4.8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group "com.github.alexdlaird"
version "2.2.11"
version "2.2.12"

java {
withJavadocJar()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ <h3>Maven</h3>
&lt;dependency&gt;
&lt;groupId&gt;com.github.alexdlaird&lt;/groupId&gt;
&lt;artifactId&gt;java-ngrok&lt;/artifactId&gt;
&lt;version&gt;2.2.11&lt;/version&gt;
&lt;version&gt;2.2.12&lt;/version&gt;
&lt;/dependency&gt;
</pre>

<h3>Gradle</h3>

<pre>
implementation "com.github.alexdlaird:java-ngrok:2.2.11"
implementation "com.github.alexdlaird:java-ngrok:2.2.12"
</pre>

If we want <code>ngrok</code> to be available from the command line,
Expand Down Expand Up @@ -101,7 +101,7 @@ <h2>Java 8</h2>
&lt;dependency&gt;
&lt;groupId&gt;com.github.alexdlaird&lt;/groupId&gt;
&lt;artifactId&gt;java8-ngrok&lt;/artifactId&gt;
&lt;version&gt;1.4.7&lt;/version&gt;
&lt;version&gt;1.4.8&lt;/version&gt;
&lt;/dependency&gt;
</pre>

Expand Down

0 comments on commit d30b7fb

Please sign in to comment.