Skip to content

Commit

Permalink
Bump version to 1.5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Aug 26, 2021
1 parent 9cf15f4 commit 2723185
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 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.2</version>
<version>1.5.3</version>
</dependency>
```

#### Gradle

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

If we want `ngrok` to be available from the command line, [pyngrok](https://github.com/alexdlaird/pyngrok) can be
Expand Down Expand Up @@ -92,7 +92,7 @@ include the `java8-ngrok` dependency from
<dependency>
<groupId>com.github.alexdlaird</groupId>
<artifactId>java8-ngrok</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>
```

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.2"
version "1.5.3"

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

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 @@ -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.2&lt;/version&gt;
&lt;version&gt;1.5.3&lt;/version&gt;
&lt;/dependency&gt;
</pre>

<h3>Gradle</h3>

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

If we want <code>ngrok</code> to be available from the command line,
Expand Down Expand Up @@ -61,7 +61,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.2&lt;/version&gt;
&lt;version&gt;1.4.3&lt;/version&gt;
&lt;/dependency&gt;
</pre>

Expand Down

0 comments on commit 2723185

Please sign in to comment.