Skip to content

Commit 78d123a

Browse files
committed
Update release notes
1 parent 932eb52 commit 78d123a

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

release-notes.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,36 @@
22

33
## Development
44

5-
[Commits](https://github.com/jhudson8/react-css-builder/compare/v0.1.0...master)
5+
[Commits](https://github.com/jhudson8/react-css-builder/compare/v0.2.0...master)
6+
7+
## v0.2.0 - February 8th, 2015
8+
- API Changes - 932eb52
9+
10+
ReactCSSBuilder.register -> ReactCSSBuilder.create
11+
StyleContext.val -> StyleContext.css
12+
13+
```
14+
require('react-css-builder').register({
15+
myClass: function(css) {
16+
return css.
17+
// stuff with StyleContext
18+
.val();
19+
}
20+
});
21+
```
22+
should now be
23+
```
24+
require('react-css-builder').create({
25+
myClass: function(css) {
26+
return css.
27+
// stuff with StyleContext
28+
.css();
29+
}
30+
});
31+
```
32+
33+
34+
[Commits](https://github.com/jhudson8/react-css-builder/compare/v0.1.0...v0.2.0)
635

736
## v0.1.0 - February 4th, 2015
837
- add enhanced styleset selectors - b3c5eb8

0 commit comments

Comments
 (0)