From b435158e53b55ddb455a39f5545f582393007c9b Mon Sep 17 00:00:00 2001 From: Adrien Hopkins Date: Thu, 7 Oct 2021 16:24:43 -0500 Subject: Updated changelog --- CHANGELOG.org | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGELOG.org') diff --git a/CHANGELOG.org b/CHANGELOG.org index 732b085..8f4f07d 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,5 +1,11 @@ * Changelog All notable changes in this project will be shown in this file. +** Unreleased +*** Added + - Added lots more tests for the backend and utilities +*** Fixed + - The UnitDatabase's unit map acted as if it were empty if it had units but no prefixes + - Non-exact LinearUnitValue instances had their value printed as "(", meaning "(5.0 ± 0.1) m" would be printed as "( m" ** v0.3.1 - [2021-08-26 Thu] *** Added - Created a user manual -- cgit v1.2.3 From 9c30c3ad4d4658964e2bb2bb5be6c2eebbfbe8af Mon Sep 17 00:00:00 2001 From: Adrien Hopkins Date: Thu, 2 Dec 2021 16:53:05 -0500 Subject: Updated changelog and version number --- CHANGELOG.org | 2 +- README.org | 2 +- src/main/java/sevenUnits/ProgramInfo.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'CHANGELOG.org') diff --git a/CHANGELOG.org b/CHANGELOG.org index 8f4f07d..5630737 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,6 +1,6 @@ * Changelog All notable changes in this project will be shown in this file. -** Unreleased +** v0.3.2 - [2021-12-02 Thu] *** Added - Added lots more tests for the backend and utilities *** Fixed diff --git a/README.org b/README.org index b22a497..2b4ffa0 100644 --- a/README.org +++ b/README.org @@ -1,4 +1,4 @@ -* 7Units v0.3.1 +* 7Units v0.3.2 (this project uses Semantic Versioning) ** What is it? This is a unit converter, which allows you to convert between different units, and includes a GUI which can read unit data from a file (using some unit math) and convert between units that you type in, and has a unit and prefix viewer to check the units that have been loaded in. diff --git a/src/main/java/sevenUnits/ProgramInfo.java b/src/main/java/sevenUnits/ProgramInfo.java index 2a0edde..31e43c7 100644 --- a/src/main/java/sevenUnits/ProgramInfo.java +++ b/src/main/java/sevenUnits/ProgramInfo.java @@ -24,7 +24,7 @@ package sevenUnits; */ public final class ProgramInfo { - public static final String VERSION = "0.3.1"; + public static final String VERSION = "0.3.2"; private ProgramInfo() {} -- cgit v1.2.3