From 69b99aaf30d6e9704352f9991ff3c54a23f60688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chalifour?= Date: Thu, 7 May 2020 11:39:29 +0200 Subject: [PATCH 1/3] chore: fix release scripts --- ship.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ship.config.js b/ship.config.js index 84b87f60..2e6954ff 100644 --- a/ship.config.js +++ b/ship.config.js @@ -17,10 +17,10 @@ module.exports = { }, buildCommand() { // We don't build the project before releasing. - return null; + return 'echo "No build needed."'; }, publishCommand() { // We don't publish to npm. - return null; + return 'echo "No publish needed."'; }, }; From 9a479eb8bf5bf977fa4be1b5fd013d5d7c66b15f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chalifour?= Date: Thu, 7 May 2020 11:41:08 +0200 Subject: [PATCH 2/3] chore: prepare v0.1.0-beta.0 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- src/version.js | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..df900ee3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# 0.1.0-beta.0 (2020-05-07) + + +### Features + +* reduce spacing around current refinements ([#68](https://github.com/algolia/ecomm-unified/issues/68)) ([06a8bf4](https://github.com/algolia/ecomm-unified/commit/06a8bf4a7122065e318713decafaec2d1ce55982)) + + + diff --git a/package.json b/package.json index 8677511a..56d2e885 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "unified-instantsearch-ecommerce", - "version": "0.1.0", + "version": "0.1.0-beta.0", "license": "Apache-2.0", "private": true, "scripts": { diff --git a/src/version.js b/src/version.js index 7030d4a7..028490ba 100644 --- a/src/version.js +++ b/src/version.js @@ -1 +1 @@ -export const version = '0.1.0'; +export const version = '0.1.0-beta.0'; From a62a8b5bd1992aefe6d923397430c41aec787478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chalifour?= Date: Thu, 7 May 2020 11:42:26 +0200 Subject: [PATCH 3/3] docs: update changelog --- CHANGELOG.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df900ee3..09507da2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,3 @@ # 0.1.0-beta.0 (2020-05-07) - -### Features - -* reduce spacing around current refinements ([#68](https://github.com/algolia/ecomm-unified/issues/68)) ([06a8bf4](https://github.com/algolia/ecomm-unified/commit/06a8bf4a7122065e318713decafaec2d1ce55982)) - - - +Initial release.