Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Feb 14, 2024
1 parent f609519 commit c5f90e6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ 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.8...HEAD)
## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/2.2.9...HEAD)

## [2.2.9](https://github.com/alexdlaird/java-ngrok/compare/2.2.8...2.2.9) - 2024-02-14
### Added
- Stability improvements.

## [2.2.8](https://github.com/alexdlaird/java-ngrok/compare/2.2.7...2.2.8) - 2024-01-08
### Added
Expand Down
4 changes: 2 additions & 2 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.8</version>
<version>2.2.9</version>
</dependency>
```

#### Gradle

```groovy
implementation "com.github.alexdlaird:java-ngrok:2.2.8"
implementation "com.github.alexdlaird:java-ngrok:2.2.9"
```

If we want `ngrok` to be available from the command line, [pyngrok](https://github.com/alexdlaird/pyngrok) can be
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.8"
version "2.2.9"

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.8";
private static final String VERSION = "2.2.9";

private final JavaNgrokConfig javaNgrokConfig;
private final NgrokProcess ngrokProcess;
Expand Down
4 changes: 2 additions & 2 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.8&lt;/version&gt;
&lt;version&gt;2.2.9&lt;/version&gt;
&lt;/dependency&gt;
</pre>

<h3>Gradle</h3>

<pre>
implementation "com.github.alexdlaird:java-ngrok:2.2.8"
implementation "com.github.alexdlaird:java-ngrok:2.2.9"
</pre>

If we want <code>ngrok</code> to be available from the command line,
Expand Down

0 comments on commit c5f90e6

Please sign in to comment.