Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
bumped version & added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCouper committed Jun 3, 2016
1 parent 28d3ff5 commit 3f5229e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,21 @@
# Notable changes to Sutor-Random


## 1.1.0

**FIXED** import issue. Package had used the ES6 `export default` statement. This turns out to not be totally compatible with Node CJS, so switched to `module.exports`.

*Example of issue, now fixed*:

```
// in package `export default { ... }`
> var Random = require('sutor-random')
> Random.seeded()
ReferenceError
> Random.default.seeded()
0.23452345647...
```

## 1.0.0

Initial package release.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sutor-random",
"version": "1.0.2",
"version": "1.1.2",
"description": "A naïve seeded PRNG implementation.",
"main": "dist/random.js",
"scripts": {
Expand Down

0 comments on commit 3f5229e

Please sign in to comment.