Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version, add release notes #432

Merged
merged 2 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Authentication Service MKII release notes

## 0.7.0

* BACKWARDS INCOMPATIBILITY - the auth server now logs to stdout vs. syslog.
* The the `fatTestJar` Gradle task has been replaced with the `shadowJar` task, which builds
a shadowed version of the test fat jar.

## 0.6.1

* Gradle has replaced Ant as the build tool. As a consequence, all the built artifacts
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/kbase/auth2/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
public class Version {

/** The version of the KBase Auth2 service. */
public static final String VERSION = "0.6.1";
public static final String VERSION = "0.7.0";

}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
public class ServiceCommonTest {

public static final String SERVICE_NAME = "Authentication Service";
public static final String SERVER_VER = "0.6.1";
public static final String SERVER_VER = "0.7.0";
public static final String GIT_ERR =
"Missing git commit file gitcommit, should be in us.kbase.auth2";

Expand Down
Loading