Skip to content

Commit 0c4cee8

Browse files
committed
Update change log and bump version 0.1.20.
1 parent 3e0c3d4 commit 0c4cee8

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

HISTORY.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
0.1.17 (2015)
1+
0.1.20 (2015/08/10)
2+
===================
3+
- Expose http `server` instance to service.
4+
- Add WebSocket support (handle upgrade request).
5+
- Add socket.io service example.
6+
- Add server-side middleware support.
7+
8+
0.1.19 (2015/08/07)
9+
===================
10+
- [Breaking changes] Use `startService` and `runServer` instead of `boot` to run service/server.
11+
- Add `Makefile` for example.
12+
13+
14+
0.1.18 (2015/08/05)
15+
===================
16+
- Use socket.io as the default transporter for RPC.
17+
- Only one micromono instance per process.
18+
- Fully functional express+passport example.
19+
- Use a separate connect instance for middleware.
20+
- Some bug fixes.
21+
22+
0.1.17 (2015/07/30)
223
===================
324
- Load services with command line option `--service`.
425
- Allow waiting for services with command line option `--allow-pending`.

example/account/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"cookie-parser": "^1.3.5",
88
"express-session": "^1.11.3",
99
"jade": "^1.11.0",
10-
"micromono": "^0.1.18",
10+
"micromono": "^0.1.20",
1111
"passport": "^0.2.2",
1212
"passport-local": "^1.0.0"
1313
}

example/home/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"body-parser": "^1.13.2",
1414
"jade": "^1.11.0",
15-
"micromono": "^0.1.18"
15+
"micromono": "^0.1.20"
1616
},
1717
"devDependencies": {
1818
"jspm": "0.15.7"

example/io/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "io",
33
"version": "0.1.0",
44
"dependencies": {
5-
"micromono": "^0.1.19",
5+
"micromono": "^0.1.20",
66
"socket.io": "1.3.6"
77
}
88
}

example/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"dependencies": {
1212
"express": "^4.13.1",
1313
"jade": "^1.11.0",
14-
"micromono": "^0.1.18"
14+
"micromono": "^0.1.20"
1515
}
1616
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "micromono",
3-
"version": "0.1.19",
3+
"version": "0.1.20",
44
"description": "Microservice in monolithic style",
55
"main": "lib/index.js",
66
"directories": {

0 commit comments

Comments
 (0)