Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version number to 0.17.0 #1426

Merged
merged 1 commit into from
Jun 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion maintainer/conda/MDAnalysis/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: mdanalysis
# This has to be changed after a release
version: "0.16.1dev"
version: "0.17.0dev"

source:
git_url: https://github.com/MDAnalysis/mdanalysis
Expand Down
11 changes: 11 additions & 0 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ The rules for this file:
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------
mm/dd/17 richardjgowers, rathann, jbarnoud, orbeckst

* 0.17.0

Enhancements

Deprecations

Fixes

Changes


mm/dd/17 richardjgowers, rathann, jbarnoud, orbeckst
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I haven't set a date here since I don't know the exact date of the release yet.

Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@
# e.g. with lib.log

#: Release of MDAnalysis as a string, using `semantic versioning`_.
__version__ = "0.16.2-dev0" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "0.17.0-dev" # NOTE: keep in sync with RELEASE in setup.py
2 changes: 1 addition & 1 deletion package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
cmdclass = {}

# NOTE: keep in sync with MDAnalysis.__version__ in version.py
RELEASE = "0.16.2-dev0"
RELEASE = "0.17.0-dev"

is_release = 'dev' not in RELEASE

Expand Down
2 changes: 1 addition & 1 deletion testsuite/MDAnalysisTests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
import logging
logger = logging.getLogger("MDAnalysisTests.__init__")

__version__ = "0.16.2-dev0" # keep in sync with RELEASE in setup.py
__version__ = "0.17.0-dev" # keep in sync with RELEASE in setup.py
try:
from MDAnalysisTests.authors import __authors__
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion testsuite/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def dynamic_author_list():
except (OSError, IOError):
warnings.warn('Cannot write the list of authors.')

RELEASE = "0.16.2-dev0" # this must be in-sync with MDAnalysis
RELEASE = "0.17.0-dev" # this must be in-sync with MDAnalysis
LONG_DESCRIPTION = \
"""MDAnalysis is a tool for analyzing molecular dynamics trajectories.

Expand Down