Skip to content

Commit

Permalink
Updating version, changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Mar 8, 2023
1 parent 7ab57f3 commit 7198283
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +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/1.6.1...HEAD)
## [Unreleased](https://github.com/alexdlaird/java-ngrok/compare/1.6.2...HEAD)

## [1.6.2](https://github.com/alexdlaird/java-ngrok/compare/1.6.1...1.6.2) - 2023-03-08
### Fixed
- Issue where zip file paths were not normalized before they were read.
- Documentation improvements.
- 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.6.1</version>
<version>1.6.2</version>
</dependency>
```

#### Gradle

```groovy
implementation "com.github.alexdlaird:java-ngrok:1.6.1"
implementation "com.github.alexdlaird:java-ngrok:1.6.2"
```

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.6.1"
version "1.6.2"

java {
withJavadocJar()
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/alexdlaird/ngrok/NgrokClient.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 Alex Laird
* Copyright (c) 2023 Alex Laird
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -140,7 +140,7 @@ public class NgrokClient {

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

private static final String VERSION = "1.6.1";
private static final String VERSION = "1.6.2";

private final JavaNgrokConfig javaNgrokConfig;
private final NgrokProcess ngrokProcess;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 Alex Laird
* Copyright (c) 2023 Alex Laird
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
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.6.1&lt;/version&gt;
&lt;version&gt;1.6.2&lt;/version&gt;
&lt;/dependency&gt;
</pre>

<h3>Gradle</h3>

<pre>
implementation "com.github.alexdlaird:java-ngrok:1.6.1"
implementation "com.github.alexdlaird:java-ngrok:1.6.2"
</pre>

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

0 comments on commit 7198283

Please sign in to comment.