Skip to content

Commit

Permalink
Update change log and bump version 0.1.20.
Browse files Browse the repository at this point in the history
  • Loading branch information
lsm committed Aug 10, 2015
1 parent 3e0c3d4 commit 0c4cee8
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
23 changes: 22 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
0.1.17 (2015)
0.1.20 (2015/08/10)
===================
- Expose http `server` instance to service.
- Add WebSocket support (handle upgrade request).
- Add socket.io service example.
- Add server-side middleware support.

0.1.19 (2015/08/07)
===================
- [Breaking changes] Use `startService` and `runServer` instead of `boot` to run service/server.
- Add `Makefile` for example.


0.1.18 (2015/08/05)
===================
- Use socket.io as the default transporter for RPC.
- Only one micromono instance per process.
- Fully functional express+passport example.
- Use a separate connect instance for middleware.
- Some bug fixes.

0.1.17 (2015/07/30)
===================
- Load services with command line option `--service`.
- Allow waiting for services with command line option `--allow-pending`.
Expand Down
2 changes: 1 addition & 1 deletion example/account/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"cookie-parser": "^1.3.5",
"express-session": "^1.11.3",
"jade": "^1.11.0",
"micromono": "^0.1.18",
"micromono": "^0.1.20",
"passport": "^0.2.2",
"passport-local": "^1.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion example/home/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"body-parser": "^1.13.2",
"jade": "^1.11.0",
"micromono": "^0.1.18"
"micromono": "^0.1.20"
},
"devDependencies": {
"jspm": "0.15.7"
Expand Down
2 changes: 1 addition & 1 deletion example/io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "io",
"version": "0.1.0",
"dependencies": {
"micromono": "^0.1.19",
"micromono": "^0.1.20",
"socket.io": "1.3.6"
}
}
2 changes: 1 addition & 1 deletion example/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"dependencies": {
"express": "^4.13.1",
"jade": "^1.11.0",
"micromono": "^0.1.18"
"micromono": "^0.1.20"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "micromono",
"version": "0.1.19",
"version": "0.1.20",
"description": "Microservice in monolithic style",
"main": "lib/index.js",
"directories": {
Expand Down

0 comments on commit 0c4cee8

Please sign in to comment.