Skip to content

Commit

Permalink
chore: release v0.1.0-beta.3 (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahdayan authored May 11, 2020
1 parent 46f4919 commit 8a5adff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
- save_cache: *save_yarn_cache
- run:
name: Try to Release
command: yarn release:trigger
command: |
git config --global user.email "[email protected]"
git config --global user.name "shipjs"
yarn release:trigger
workflows:
version: 2
ci:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [0.1.0-beta.3](https://github.com/algolia/ecomm-unified/compare/v0.1.0-beta.0...v0.1.0-beta.3) (2020-05-11)



# [0.1.0-beta.2](https://github.com/algolia/ecomm-unified/compare/v0.1.0-beta.0...v0.1.0-beta.2) (2020-05-11)


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": "unified-instantsearch-ecommerce",
"version": "0.1.0-beta.2",
"version": "0.1.0-beta.3",
"license": "Apache-2.0",
"private": true,
"scripts": {
Expand Down
4 changes: 0 additions & 4 deletions ship.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ module.exports = {
`export const version = '${version}';\n`
);
},
beforeCommitChanges: ({ exec }) => {
exec('git config user.email "[email protected]"');
exec('git config user.name "shipjs"');
},
buildCommand() {
// We don't build the project before releasing.
return 'echo "No build needed."';
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.1.0-beta.2';
export const version = '0.1.0-beta.3';

0 comments on commit 8a5adff

Please sign in to comment.