Skip to content

Commit

Permalink
Merge pull request #8 from serverless/release
Browse files Browse the repository at this point in the history
Release v1.0.1
  • Loading branch information
medikoo authored Jul 9, 2019
2 parents b63a451 + c5b771b commit 078c903
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- npm run commitlint-ci-pull-request
# If release PR, confirm we have a changelog
- |
tagName=`git diff master package.json | grep '"version": "' | grep -oE "[0-9]+\.[0-9]+\.[0-9]+"` || :
tagName=`git diff master package.json | grep '"version": "' | tail -n 1 | grep -oE "[0-9]+\.[0-9]+\.[0-9]+"` || :
if [ -n "$tagName" ];
then
npx dump-release-notes-from-cc-changelog $tagName
Expand All @@ -94,10 +94,11 @@ jobs:
- npm run lint
# If package version was changed with last merged PR, push tag
- |
tagName=`git diff HEAD^ package.json | grep '"version": "' | grep -oE "[0-9]+\.[0-9]+\.[0-9]+"` || :
if [ -n "$tagName" ];
tagName=`git diff HEAD^ package.json | grep '"version": "' | tail -n 1 | grep -oE "[0-9]+\.[0-9]+\.[0-9]+"` || :
if [ -n "$tagName" ];
then
git tag v$tagName && git push -q https://[email protected]/serverless/eslint-config --tags
git tag v$tagName
git push -q https://[email protected]/serverless/eslint-config --tags
fi
# version tag
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.1](https://github.com/serverless/eslint-config/compare/v1.0.0...v1.0.1) (2019-07-09)

### Bug Fixes

- Turn off 'require-atomic-updates' due to false positives ([0dd3f0c](https://github.com/serverless/eslint-config/commit/0dd3f0c))

## 1.0.0 (2019-06-24)

### Features
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": "@serverless/eslint-config",
"version": "1.0.0",
"version": "1.0.1",
"description": "ESLint & Prettier config for Serveless projects",
"keywords": [
"lint",
Expand Down

0 comments on commit 078c903

Please sign in to comment.