Skip to content

Commit a9ebc2b

Browse files
authored
⚡ Release 2.8.1 (#4771)
* unfuck release 2.8.0 * ⚡ Release 2.8.1 * Ensure we can install also on latest
1 parent 8fe3265 commit a9ebc2b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
deploy:
5959
- provider: script
6060
skip_cleanup: true
61-
script: ./resources/npm-git.sh
61+
script: ./resources/npm-git.sh && npm install -g https://github.com/parse-community/parse-server#latest
6262
on:
6363
branch:
6464
- master

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
## Parse Server Changelog
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.0...master)
4+
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.1...master)
5+
6+
### 2.8.1
7+
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.1...2.8.0)
8+
9+
Ensure all the files are properly exported to the final package.
510

611
### 2.8.0
712
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.0...2.7.4)

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {
@@ -14,6 +14,7 @@
1414
"views/",
1515
"LICENSE",
1616
"PATENTS",
17+
"postinstall.js",
1718
"README.md"
1819
],
1920
"license": "BSD-3-Clause",

resources/npm-git.sh

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ cp README.md $BUILD_DIR/
2525
cp LICENSE $BUILD_DIR/
2626
cp PATENTS $BUILD_DIR/
2727
cp CHANGELOG.md $BUILD_DIR/
28+
cp postinstall.js $BUILD_DIR/
2829
cp -R lib $BUILD_DIR
2930
cp -R bin $BUILD_DIR
3031
cp -R public_html $BUILD_DIR

0 commit comments

Comments
 (0)