Skip to content

Commit 927599c

Browse files
committed
Mark current version as v4-beta
1 parent eae3b1d commit 927599c

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## v4.0.0 - UNRELEASED
3+
## v4.0.0-beta - 2018-02-14
44

55
### Added
66

bin/pack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ VERSION=$(python ./manage.py version)
44
FULL_VERSION=$VERSION+b$CIRCLE_BUILD_NUM
55
FILENAME=$CIRCLE_ARTIFACTS/$NAME.$FULL_VERSION.tar.gz
66

7-
sed -ri "s/^__version__ = '([0-9.]*)'/__version__ = '$FULL_VERSION'/" redash/__init__.py
7+
sed -ri "s/^__version__ = '([A-Za-z0-9.-]*)'/__version__ = '$FULL_VERSION'/" redash/__init__.py
88
tar -zcv -f $FILENAME --exclude="optipng*" --exclude=".git*" --exclude="*.pyc" --exclude="*.pyo" --exclude="venv" --exclude="node_modules" *

circle.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ deployment:
2222
branch: [master, /release.*/]
2323
commands:
2424
- bin/pack
25-
# - python bin/release_manager.py $(CIRCLE_SHA1) $(BASE_VERSION) $(FILENAME)
2625
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
2726
- docker build -t redash/redash:$(./manage.py version | sed -e "s/\+/./") .
2827
- docker push redash/redash:$(./manage.py version | sed -e "s/\+/./")

redash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from redash.destinations import import_destinations
2020

2121

22-
__version__ = '4.0.0'
22+
__version__ = '4.0.0-beta'
2323

2424

2525
def setup_logging():

0 commit comments

Comments
 (0)