Skip to content

Commit

Permalink
Update changelog, bump version to 1.5.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Sep 21, 2021
1 parent 1a532e3 commit 2abc691
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +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/1.5.3...HEAD)
## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/1.5.4...HEAD)

## [1.5.4](https://github.com/alexdlaird/java-ngrok/compare/1.5.3...1.5.4) - 2021-09-21
### Added
- Test improvements.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,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>1.5.3</version>
<version>1.5.4</version>
</dependency>
```

#### Gradle

```groovy
implementation "com.github.alexdlaird:java-ngrok:1.5.3"
implementation "com.github.alexdlaird:java-ngrok:1.5.4"
```

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 @@ -8,7 +8,7 @@ plugins {
}

group "com.github.alexdlaird"
version "1.5.3"
version "1.5.4"

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 @@ -135,7 +135,7 @@ public class NgrokClient {

private static final Logger LOGGER = Logger.getLogger(String.valueOf(NgrokClient.class));

private static final String VERSION = "1.5.3";
private static final String VERSION = "1.5.4";

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 @@ -18,14 +18,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;1.5.3&lt;/version&gt;
&lt;version&gt;1.5.4&lt;/version&gt;
&lt;/dependency&gt;
</pre>

<h3>Gradle</h3>

<pre>
implementation "com.github.alexdlaird:java-ngrok:1.5.3"
implementation "com.github.alexdlaird:java-ngrok:1.5.4"
</pre>

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

0 comments on commit 2abc691

Please sign in to comment.