summaryrefslogtreecommitdiff
path: root/CHANGELOG.org
diff options
context:
space:
mode:
authorAdrien Hopkins <masterofnumbers17@gmail.com>2019-08-26 16:52:11 -0400
committerAdrien Hopkins <masterofnumbers17@gmail.com>2019-08-26 16:52:11 -0400
commit740c5a4c13e98bd04b385eee9b881e53eb88d3b8 (patch)
tree2445b9daf19d0fc1291e255b01a4b372edc04b43 /CHANGELOG.org
parent01b072b98fdd19a2d57afc15a4ee4a80d0bfc0cd (diff)
The unit file parser now uses regular expressions.
Diffstat (limited to 'CHANGELOG.org')
-rw-r--r--CHANGELOG.org20
1 files changed, 13 insertions, 7 deletions
diff --git a/CHANGELOG.org b/CHANGELOG.org
index 77e7593..1a49709 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -1,7 +1,20 @@
* Changelog
All notable changes in this project will be shown in this file.
+** Unreleased
+*** Added
+ - Added a simple unit conversion method to the Unit interface
+ - Added a static factory to create nonlinear units to the Unit interface
+*** Changed
+ - You can now use tabs or spaces to separate unit names and their definitions in unit files.
** v0.2.0 - [2019-04-14]
+*** Added
+ - A selection-based unit converter which allows you to select two units, input a value, and convert.
+ - The UnitDatabase now stores dimensions.
+ - A system to parse mathematical expressions, used to parse unit expressions.
+ - You can now add and subtract in unit expressions!
+ - Instructions for obtaining unit instances are provided in the relevant classes
+ - The UnitPrefix interface now provides default times, dividedBy and toExponent methods.
*** Changed
- When searching for units, units with no prefixes are searched for before prefixed units
- Smaller prefixes are searched for before larger prefixes
@@ -10,13 +23,6 @@ All notable changes in this project will be shown in this file.
- BaseUnit is now a subclass of LinearUnit
- In unit files, Comments can now start in the middle of lines
- UnitsDatabase.addAllFromFile() has been renamed to loadUnitsFile()
-*** Added
- - A selection-based unit converter which allows you to select two units, input a value, and convert.
- - The UnitDatabase now stores dimensions.
- - A system to parse mathematical expressions, used to parse unit expressions.
- - You can now add and subtract in unit expressions!
- - Instructions for obtaining unit instances are provided in the relevant classes
- - The UnitPrefix interface now provides default times, dividedBy and toExponent methods.
** v0.1.0 - [2019-02-01]
NOTE: At this stage, the API is subject to significant change.
*** Added