Skip to content

Commit

Permalink
v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gigabo committed Jun 3, 2016
1 parent f7ff206 commit 5898cb8
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 9 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@

## v0.3.1 (2016-06-03)

#### Bug fix
* `react-server`
* [#263](https://github.com/redfin/react-server/pull/263) Fixed: #261 - error response body needs to be rehydrated. ([@roblg](https://github.com/roblg))
* `generator-react-server`
* [#257](https://github.com/redfin/react-server/pull/257) [255] .reactserverrc is malformed json. ([@doug-wade](https://github.com/doug-wade))
* [#256](https://github.com/redfin/react-server/pull/256) [254] Generate gulpfile from template. ([@doug-wade](https://github.com/doug-wade))

#### Enhancement
* `react-server-cli`
* [#251](https://github.com/redfin/react-server/pull/251) Handle image and font files linked from CSS. ([@aickin](https://github.com/aickin))

#### Commiters: 4
- Bo Borgerson ([gigabo](https://github.com/gigabo))
- Douglas Wade ([doug-wade](https://github.com/doug-wade))
- Robert Gay ([roblg](https://github.com/roblg))
- Sasha Aickin ([aickin](https://github.com/aickin))

## v0.3.0 (2016-06-02)

#### Breaking change
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0-beta.14",
"version": "0.3.0",
"version": "0.3.1",
"changelog": {
"repo": "redfin/react-server",
"labels": {
Expand Down
10 changes: 7 additions & 3 deletions packages/generator-react-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-react-server",
"version": "0.3.0",
"version": "0.3.1",
"description": "A react-server yeoman generator",
"homepage": "http://github.com/redfin/react-server",
"author": {
Expand Down Expand Up @@ -38,9 +38,13 @@
},
"license": "Apache-2.0",
"xo": {
"envs": ["node"],
"envs": [
"node"
],
"extends": "xo-react",
"globals": ["__LOGGER__"],
"globals": [
"__LOGGER__"
],
"ignores": [
"test/**/*"
]
Expand Down
4 changes: 2 additions & 2 deletions packages/react-server-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-server-cli",
"version": "0.3.0",
"version": "0.3.1",
"description": "A command line to run react-server",
"main": "target/index.js",
"scripts": {
Expand Down Expand Up @@ -35,7 +35,7 @@
"yargs": "~3.15.0"
},
"peerDependencies": {
"react-server": "^0.3.0"
"react-server": "^0.3.1"
},
"devDependencies": {
"rimraf": "^2.5.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/react-server-data-bundle-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-server-data-bundle-cache",
"version": "0.3.0",
"version": "0.3.1",
"description": "React Server Data Bundle Cache",
"main": "index.js",
"repository": "redfin/react-server",
Expand All @@ -17,7 +17,7 @@
"stratocacher-layer-lru": "0.0.12"
},
"peerDependencies": {
"react-server": "^0.3.0"
"react-server": "^0.3.1"
},
"devDependencies": {
"rimraf": "^2.5.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-server",
"version": "0.3.0",
"version": "0.3.1",
"description": "React framework with server render for blazing fast page load and seamless transitions between pages in the browser.",
"main": "target/server/server.js",
"browser": "target/client/client.js",
Expand Down

0 comments on commit 5898cb8

Please sign in to comment.