From 0b427337d0c8e96f28b87354d94adbf014e1bfb5 Mon Sep 17 00:00:00 2001 From: Florent Vilmart <364568+flovilmart@users.noreply.github.com> Date: Fri, 18 May 2018 12:57:22 -0400 Subject: [PATCH 1/3] unfuck release 2.8.0 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d9e37c542b..37ef4c7945 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parse-server", - "version": "2.8.0", + "version": "2.8.1", "description": "An express module providing a Parse-compatible API server", "main": "lib/index.js", "repository": { @@ -14,6 +14,7 @@ "views/", "LICENSE", "PATENTS", + "postinstall.js", "README.md" ], "license": "BSD-3-Clause", From 567654bfb48570411b7090f54f4fe594dd6fe190 Mon Sep 17 00:00:00 2001 From: Florent Vilmart <364568+flovilmart@users.noreply.github.com> Date: Fri, 18 May 2018 12:58:24 -0400 Subject: [PATCH 2/3] :zap: Release 2.8.1 --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 031a5f4958..6cb6c49874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ ## Parse Server Changelog ### master -[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.0...master) +[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.1...master) + +### 2.8.1 +[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.1...2.8.0) + +Ensure all the files are properly exported to the final package. ### 2.8.0 [Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.0...2.7.4) From 3721f2bcf250ec8a934ff5cd67b4ab78283642b4 Mon Sep 17 00:00:00 2001 From: Florent Vilmart <364568+flovilmart@users.noreply.github.com> Date: Fri, 18 May 2018 13:04:36 -0400 Subject: [PATCH 3/3] Ensure we can install also on latest --- .travis.yml | 2 +- resources/npm-git.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 156719debc..28923031a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,7 +58,7 @@ jobs: deploy: - provider: script skip_cleanup: true - script: ./resources/npm-git.sh + script: ./resources/npm-git.sh && npm install -g https://github.com/parse-community/parse-server#latest on: branch: - master diff --git a/resources/npm-git.sh b/resources/npm-git.sh index c538b77fd7..37c9707401 100755 --- a/resources/npm-git.sh +++ b/resources/npm-git.sh @@ -25,6 +25,7 @@ cp README.md $BUILD_DIR/ cp LICENSE $BUILD_DIR/ cp PATENTS $BUILD_DIR/ cp CHANGELOG.md $BUILD_DIR/ +cp postinstall.js $BUILD_DIR/ cp -R lib $BUILD_DIR cp -R bin $BUILD_DIR cp -R public_html $BUILD_DIR