Skip to content

Commit

Permalink
Merge pull request #217 from nden/version-string
Browse files Browse the repository at this point in the history
fix a bug in versioning, change package version to 1.1.1.dev
  • Loading branch information
nden authored Oct 2, 2016
2 parents b0d80ff + 69eba18 commit 4a8c9d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions asdf/versioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def get_version_map(version):
version_map = yaml.load(
fd, Loader=_yaml_base_loader)
except:
version_string = version_to_string(version)
raise ValueError(
"Could not load version map for version {0}".format(version_string))
_version_map[version] = version_map
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _null_validate(self):
builtins._PACKAGE_NAME_ = 'asdf'

# VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386)
VERSION = '1.0.6'
VERSION = '1.1.1.dev'

# Indicates if this version is a release version
RELEASE = 'dev' not in VERSION
Expand Down

0 comments on commit 4a8c9d7

Please sign in to comment.