Skip to content

Commit 4b53aba

Browse files
committed
Bump to 2.2.6
1 parent 0e47e70 commit 4b53aba

File tree

4 files changed

+32
-26
lines changed

4 files changed

+32
-26
lines changed

.travis.yml

+23-17
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,29 @@ services: docker
33

44
env:
55
- VERSION=latest
6-
- VERSION=2.0.0
7-
- VERSION=2.0.1
8-
- VERSION=2.0.2
9-
- VERSION=2.0.3
10-
- VERSION=2.0.4
11-
- VERSION=2.0.5
12-
- VERSION=2.0.6
13-
- VERSION=2.0.7
14-
- VERSION=2.0.8
15-
- VERSION=2.1.0
16-
- VERSION=2.1.1
17-
- VERSION=2.1.2
18-
- VERSION=2.1.3
19-
- VERSION=2.1.4
20-
- VERSION=2.1.5
21-
- VERSION=2.1.6
22-
- VERSION=2.2.0
6+
# - VERSION=2.0.0
7+
# - VERSION=2.0.1
8+
# - VERSION=2.0.2
9+
# - VERSION=2.0.3
10+
# - VERSION=2.0.4
11+
# - VERSION=2.0.5
12+
# - VERSION=2.0.6
13+
# - VERSION=2.0.7
14+
# - VERSION=2.0.8
15+
# - VERSION=2.1.0
16+
# - VERSION=2.1.1
17+
# - VERSION=2.1.2
18+
# - VERSION=2.1.3
19+
# - VERSION=2.1.4
20+
# - VERSION=2.1.5
21+
# - VERSION=2.1.6
22+
# - VERSION=2.2.0
23+
# - VERSION=2.2.1
24+
# - VERSION=2.2.2
25+
# - VERSION=2.2.3
26+
# - VERSION=2.2.4
27+
# - VERSION=2.2.5
28+
# - VERSION=2.2.6
2329
- VERSION=dev DOCKERDIR="dev"
2430

2531
install:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Here is overview:
2929
Features:
3030

3131
* Support latest parse-server npm version: `yongjhih/parse-server:latest`
32-
* Support various parse-server npm versions: `yongjhih/parse-server:2.2.0`
32+
* Support various parse-server npm versions: `yongjhih/parse-server:2.2.6`
3333
* Support latest parse-server commit: `yongjhih/parse-server:dev`
3434
* Support docker stack with docker-compose
3535
* Support parse-cloud-code volume
@@ -167,7 +167,7 @@ $ docker run -d \
167167

168168
### Usage of specific parse-server version
169169

170-
Specify parse-server:2.2.0:
170+
Specify parse-server:2.2.6:
171171

172172
```sh
173173
$ docker run -d \
@@ -177,7 +177,7 @@ $ docker run -d \
177177
-p 2022:22 \
178178
--link mongo \
179179
--name parse-server \
180-
yongjhih/parse-server:2.2.0
180+
yongjhih/parse-server:2.2.6
181181
```
182182

183183
ref. https://github.com/ParsePlatform/parse-server/releases

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server-example",
3-
"version": "1.2.0",
3+
"version": "1.4.0",
44
"description": "An example Parse API server using the parse-server module",
55
"main": "index.js",
66
"repository": {
@@ -11,10 +11,10 @@
1111
"dependencies": {
1212
"nodemon": "^1.8.1",
1313
"docker-links": "^1.0.2",
14-
"express": "~4.13.x",
14+
"express": "~4.11.x",
1515
"kerberos": "~0.0.x",
16-
"parse": "~1.6.12",
17-
"parse-server": "~2.2.0"
16+
"parse": "~1.8.0",
17+
"parse-server": "~2.2.6"
1818
},
1919
"scripts": {
2020
"start": "nodemon --watch /parse/cloud index.js"

tag

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env bash
22

3-
for i in 2.0.{0..8} 2.1.{0..6} 2.2.0; do
3+
for i in 2.0.{0..8} 2.1.{0..6} 2.2.{0..6}; do
44
sed -i 's/"parse-server": "[^"]\+"/"parse-server": "'"$i"'"/' package.json
55
git commit -am "Bump to $i"
66
git tag -f "$i"
77
done
88

9-
echo git push origin 2.0.{0..8} 2.1.{0..6} 2.2.0
9+
echo git push origin 2.0.{0..8} 2.1.{0..6} 2.2.{0..6}

0 commit comments

Comments
 (0)