Skip to content

Commit

Permalink
Version 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adoble committed Feb 11, 2024
1 parent b3de026 commit ccb3bc9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and from version 4.0.0 this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.2.3]

### Addded
* Nothing added as yet

### Changed
* Fixed [issue 45](https://github.com/adoble/adr-j/issues/45).
* Updated the installation instructions to show how JBang can be used to simpify installation. See [issue 44](https://github.com/adoble/adr-j/issues/44) (many thanks to [maxandersen](https://github.com/maxandersen) for showing how this can be done).
* Added new Version class to make it clearer where version numbers are changed.
* Updated to use Java 21.

### Fixed
* Nothing fixed as yet
* Fixed [issue 45](https://github.com/adoble/adr-j/issues/45).

## [3.2.2]

Expand Down
22 changes: 11 additions & 11 deletions src/main/java/org/doble/adr/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
package org.doble.adr;

public final class Version {
/**********************************************************
* VERSION NUMBER
*
* Version numbers adhere to to Semantic Versioning:
* https://semver.org/spec/v2.0.0.html
*
***********************************************************/
private final static String version = "3.2.3-alpha"; // Minor release, backwards compatible
/**********************************************************
* VERSION NUMBER
*
* Version numbers adhere to to Semantic Versioning:
* https://semver.org/spec/v2.0.0.html
*
***********************************************************/
private final static String version = "3.2.3"; // Minor release, backwards compatible

public static String get_version() {
return version;
}
public static String get_version() {
return version;
}

}

0 comments on commit ccb3bc9

Please sign in to comment.