Skip to content

Commit 8a2197d

Browse files
committed
Release v0.8.3
1 parent 5129a9b commit 8a2197d

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ HOWTO.md
55
.vscode/launch.json
66
.nyc_output
77
coverage
8-
*.bash
8+
*.bash
9+
call-tree

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# History
22

3+
## 2019-06-04, v0.8.3
4+
- `split` now supports custom types
5+
36
## 2019-06-01, v0.8.2
47
- Fixed unit complexity calculation for deciding whether to simplify units
58
- Added undocumented second parameter to `conv` function, which could be removed at any time

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unitmath",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "JavaScript library for unit conversion and arithmetic",
55
"main": "index.js",
66
"module": "src/Unit.js",

test/Unit.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ before(() => {
8181
typeFunnyFormat = { format: (a, b, c) => b + a.toString().split('').reverse().join(c) }
8282

8383
unitDec = require('../index.js').config({ type: typeComplete })
84-
84+
8585
// These will be tested below
8686
// unitDecNoPow = require('../index.js').config({ type: typeNoPow })
8787
// unitDecNoGt = require('../index.js').config({ type: typeNoGt })

0 commit comments

Comments
 (0)