Skip to content

Commit

Permalink
Trigger beta release on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
mnmkng committed Mar 9, 2020
1 parent 423a60f commit ac53642
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
include:
- stage: test
name: Lint&User-Agent
node_js: '10'
node_js: '12'
script:
- npm run lint && node .travis/check-user-agent.js
- stage: deploy
if: (branch = master AND type != pull_request) OR tag =~ /^v\d+\.\d+\.\d+$/
script: skip
node_js: '10'
node_js: '12'
before_deploy: node .travis/before-deploy.js
after_deploy: node .travis/after-deploy.js
deploy:
Expand All @@ -58,7 +58,7 @@ jobs:
tag: latest
- stage: images
if: (branch = master AND type != pull_request) OR tag =~ /^v\d+\.\d+\.\d+$/
node_js: '10'
node_js: '12'
services:
- docker
script:
Expand Down
1 change: 1 addition & 0 deletions .travis/before-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const pkgJson = require(PKG_JSON_PATH);

if (process.env.TRAVIS_TAG) {
// Only latest releases will have a tag.
console.log('before-deploy: TRAVIS_TAG:', process.env.TRAVIS_TAG);
console.log('before-deploy: Skipping version update, because it\'s a latest release.');
process.exit(0);
}
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
NEXT
0.20.2 / 2020-03-09
====================

- Fix an error where persistence of `SessionPool` would fail if a cookie included invalid
`expires` value.
- Jumping a patch version because of an error in publishing via CI.

0.20.0 / 2020-03-03
====================
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apify",
"version": "0.20.1",
"version": "0.20.2",
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
"engines": {
"node": "^10.17.0 || ^12.3.0"
Expand Down

0 comments on commit ac53642

Please sign in to comment.