Skip to content

Commit d9fb219

Browse files
committed
Re-cut v0.6.0
This patch fixes two problems in commit e5a81bb. 1) There was a problem where the #comment after the IS_RELEASE variable was casuing the conditional logic to assume this was a -snapshot release. 2) We collectively agreed that -developer-preview is a bit of a mouthful for the release taxonomy and this should be shortened to -preview This has been confirmed to now drive the proper conditional generation of a release tag and use the desired "-preview". Change-Id: I58f2d68862aca34ae0181fe35c2f503e7f5d522a Signed-off-by: Gregory Haskins <[email protected]>
1 parent e5a81bb commit d9fb219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
# - dist-clean - superset of 'clean' that also removes persistent state
3838

3939
PROJECT_NAME = hyperledger/fabric
40-
BASE_VERSION = 0.6.0-developer-preview
41-
IS_RELEASE = true # commit as 'true' only once for a given $(BASE_VERSION)
40+
BASE_VERSION = 0.6.0-preview
41+
IS_RELEASE = true
4242

4343
ifneq ($(IS_RELEASE),true)
4444
EXTRA_VERSION ?= snapshot-$(shell git rev-parse --short HEAD)

0 commit comments

Comments
 (0)