Skip to content

Commit

Permalink
Set version to .dev for the master branch
Browse files Browse the repository at this point in the history
A correct version would be shown for installations from the master branch.
Bindings will be generated with a proper version as well.

re #4936
https://pulp.plan.io/issues/4936
  • Loading branch information
goosemania committed Jun 17, 2019
1 parent 8ab5106 commit 0780559
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis/publish_client_gem.sh
Expand Up @@ -14,7 +14,7 @@ if [[ $DESCRIPTION == 'tags/'$REPORTED_VERSION ]]; then
export VERSION=${REPORTED_VERSION}
else
export EPOCH="$(date +%s)"
export VERSION=${REPORTED_VERSION}.dev.${EPOCH}
export VERSION=${REPORTED_VERSION}.${EPOCH}
fi

export response=$(curl --write-out %{http_code} --silent --output /dev/null https://rubygems.org/gems/pulp_docker_client/versions/$VERSION)
Expand Down
2 changes: 1 addition & 1 deletion pulp_docker/__init__.py
@@ -1,3 +1,3 @@
__version__ = '4.0.0b4'
__version__ = '4.0.0b5.dev'

default_app_config = 'pulp_docker.app.PulpDockerPluginAppConfig'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@

setup(
name='pulp-docker',
version='4.0.0b4',
version='4.0.0b5.dev',
description='pulp-docker plugin for the Pulp Project',
long_description=long_description,
license='GPLv2+',
Expand Down

0 comments on commit 0780559

Please sign in to comment.