Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Jan 10, 2017
1 parent 63336d8 commit fcbd555
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
test
excluded
excluded
.*
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 2.2.0
10/01/2017
* Add `exponent` method

#### 2.0.2
12/12/2016
* npm publish
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT Expat Licence.

Copyright (c) 2016 Michael Mclaughlin
Copyright (c) 2016, 2017 Michael Mclaughlin

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
4 changes: 2 additions & 2 deletions decimal.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*! decimal.js-light v2.0.2 https://github.com/MikeMcl/decimal.js-light/LICENCE */
/*! decimal.js-light v2.2.0 https://github.com/MikeMcl/decimal.js-light/LICENCE */
;(function (globalScope) {
'use strict';


/*
* decimal.js-light v2.0.2
* decimal.js-light v2.2.0
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js-light
* Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions decimal.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/decimal.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "decimal.js-light",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "2.0.2",
"version": "2.2.0",
"keywords": [
"arbitrary",
"precision",
Expand All @@ -28,6 +28,6 @@
"license": "MIT",
"scripts": {
"test": "node ./test/test.js",
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.0.2 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.2.0 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
}
}

0 comments on commit fcbd555

Please sign in to comment.