Skip to content

Commit

Permalink
0.9.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfryk committed Sep 18, 2018
1 parent 4b6ac03 commit 6cd1f12
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 0.9.0

### rc.1 (18 Sep 2018)

- [fix] broken UMD for node imports -- thanks to @jfspencer ( #180 )

### rc.0 (18 Jun 2018)

- [new] add `from` static constructor method to NEL and List
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Chris Myers
Copyright (c) 2016-2018 Chris Myers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"name": "monet",
"description": "Monadic types library for JavaScript",
"version": "0.9.0-rc.0",
"version": "0.9.0-rc.1",
"homepage": "https://monet.github.io/monet.js/",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions src/monet-pimp.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* monet-pimp.js 0.9.0-alpha.4
* monet-pimp.js 0.9.0-rc.1
*
* This file needs to be included after monet.js
*
* (c) 2012-2017 Chris Myers
* (c) 2012-2018 Chris Myers
* @license Monet-pimp.js may be freely distributed under the MIT license.
* For all details and documentation:
* https://monet.github.io/monet.js/
Expand All @@ -17,7 +17,7 @@
if (typeof define === 'function' && define.amd) {
define(['monet'], factory)
} else if (typeof module === 'object' && module.exports) {
module.exports = factory(require('monet'))
module.exports = factory(require('monet'), root)
} else {
factory(root.Monet, root)
}
Expand Down
4 changes: 2 additions & 2 deletions src/monet.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Monet.js 0.9.0-alpha.4
* Monet.js 0.9.0-rc.1
*
* (c) 2012-2017 Chris Myers
* (c) 2012-2018 Chris Myers
* @license Monet.js may be freely distributed under the MIT license.
* For all details and documentation:
* https://monet.github.io/monet.js/
Expand Down

0 comments on commit 6cd1f12

Please sign in to comment.