8000 Release 0.0.8 · typed-immutable/typed-immutable@3b316b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3b316b4

Browse files
Release 0.0.8
Adds: * A license file (required to be included by the MIT license, which is what was in package.json). * A changelog (only for 0.0.8, sadly). * An authors file. * Version bump in package.json
1 parent cd43268 commit 3b316b4

File tree

4 files changed

+58
-2
lines changed

4 files changed

+58
-2
lines changed

AUTHORS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
typed-immutable was originally written by:
2+
3+
Irakli Gozalishvili (GitHub: @Gozala)
4+
5+
It is now being maintained by:
6+
7+
Dave Coates (GitHub: @davecoates)
8+
Stu Kabakoff (GitHub: @stutrek)
9+
Pasindu Perera (GitHub: @udnisap)
10+
Luke Sneeringer (GitHub: @lukesneeringer)
11+
12+
Other contributors include:
13+
14+
Don Abrams (GitHub: @donabrams)

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
### Release 0.0.8
2+
3+
The `typed-immutable` maintainers are pleased to release a minor upgrade
4+
and bugfix release for `typed-immutable`. It includes the following changes:
5+
6+
* Added support for `Map.flatten`. [@davecoates, #15]
7+
* Added a new `Map` type, with an invocation like `Map(String, MyRecord)`,
8+
to allow for records with a map of arbitrary keys but typed records.
9+
[@davecoates, #19]
10+
* Fixed a bug when using `Date`. [@lukesneeringer, #22]
11+
* Passing a subclass of the expected type to a Record now preserves
12+
the subclass instance (rather than typecasting to the superclass).
13+
[@lukesneeringer, #26]
14+
* Immutable.js is upgraded to 3.7.6 (from 3.7.0), with the option of using
15+
any later version. [@lukesneeringer, #29]
16+
* `List.insert`, added in Immutable.js 3.7.6, is now supported in
17+
typed-immutable lists. [@lukesneeringer, #29]
18+
19+
The new team of maintainers is also in the process of instituting processes
20+
for more regular releases.

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License
2+
3+
Copyright (c) 2015-2016, typed-immutable contributors and maintainers
4+
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "typed-immutable",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Immutable structurally typed data",
55
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
6-
"homepage": "https://github.com/gozala/typed-immutable",
6+
"homepage": "https://github.com/typed-immutable/typed-immutable",
77
"keywords": [
88
"record",
99
"structure",

0 commit comments

Comments
 (0)
0