Skip to content

Commit e0dd414

Browse files
author
James Burnett
committed
v1.2.1
1 parent 14580ce commit e0dd414

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.10.38

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
## 1.2.0
2-
- moved react from peer dependency to dev dependency since React is only used internally to test. This will allow the prop type validators to work on beta/rc versions of react.
1+
## 1.2.x
2+
- 1.2.1 updated documentation to reflect that Immutable object instantiation does not require `new`
3+
- 1.2.0 moved react from peer dependency to dev dependency since React is only used internally to test. This will allow the prop type validators to work on beta/rc versions of react.
4+
5+
## Prior Version Updates
6+
- 1.1.0 added `contains` to replace `shape` validator. `shape` is deprecated and will be removed in v 1.2.0
7+
- 1.0.0 marked as stable, no other changes
8+
- 0.1.8 added `setOf` checker. Thanks to [Don Abrams](https://github.com/donabrams)!
9+
- 0.1.7 added convencience checkers for "primitive" immutable types (map, list, etc...)
10+
- 0.1.6 added `iterableOf`
11+
- 0.1.4 added `mapOf`
12+
- 0.1.3 updated package.json to support React v0.11.0+ (including 0.13.1). Thanks [Andrey Okonetchnikov](https://github.com/okonet)!

README.md

-10
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,6 @@
44

55
PropType validators that work with Immutable.js.
66

7-
## Version Updates
8-
- 1.1.0 added `contains` to replace `shape` validator. `shape` is deprecated and will be removed in v 1.2.0
9-
- 1.0.0 marked as stable, no other changes
10-
- 0.1.8 added `setOf` checker. Thanks to [Don Abrams](https://github.com/donabrams)!
11-
- 0.1.7 added convencience checkers for "primitive" immutable types (map, list, etc...)
12-
- 0.1.6 added `iterableOf`
13-
- 0.1.4 added `mapOf`
14-
- 0.1.3 updated package.json to support React v0.11.0+ (including 0.13.1). Thanks [Andrey Okonetchnikov](https://github.com/okonet)!
15-
16-
177
## About
188

199
I got tired of seeing `React.PropTypes.instanceOf(Immutable.List)` or `React.PropTypes.instanceOf(Immutable.Map)` as PropTypes for components that should be specifying an `Immutable.List` **_of_** something or that an `Immutable.Map` **contains** some keys. A little *"googling"* came up empty, unless you want to use Flow, which I do not. So, I wrote `react-immutable-proptypes`.

0 commit comments

Comments
 (0)