Skip to content

Commit

Permalink
Mark current version as v4-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Feb 14, 2018
1 parent eae3b1d commit 927599c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## v4.0.0 - UNRELEASED
## v4.0.0-beta - 2018-02-14

### Added

Expand Down
2 changes: 1 addition & 1 deletion bin/pack
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ VERSION=$(python ./manage.py version)
FULL_VERSION=$VERSION+b$CIRCLE_BUILD_NUM
FILENAME=$CIRCLE_ARTIFACTS/$NAME.$FULL_VERSION.tar.gz

sed -ri "s/^__version__ = '([0-9.]*)'/__version__ = '$FULL_VERSION'/" redash/__init__.py
sed -ri "s/^__version__ = '([A-Za-z0-9.-]*)'/__version__ = '$FULL_VERSION'/" redash/__init__.py
tar -zcv -f $FILENAME --exclude="optipng*" --exclude=".git*" --exclude="*.pyc" --exclude="*.pyo" --exclude="venv" --exclude="node_modules" *
1 change: 0 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ deployment:
branch: [master, /release.*/]
commands:
- bin/pack
# - python bin/release_manager.py $(CIRCLE_SHA1) $(BASE_VERSION) $(FILENAME)
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker build -t redash/redash:$(./manage.py version | sed -e "s/\+/./") .
- docker push redash/redash:$(./manage.py version | sed -e "s/\+/./")
Expand Down
2 changes: 1 addition & 1 deletion redash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from redash.destinations import import_destinations


__version__ = '4.0.0'
__version__ = '4.0.0-beta'


def setup_logging():
Expand Down

0 comments on commit 927599c

Please sign in to comment.