Skip to content

Commit

Permalink
make things ready for a 2.5.0 release (#4154)
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored May 27, 2023
1 parent 646adf1 commit fb9e0bc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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: "2.5.0-dev0"
version: "2.5.0"

source:
git_url: https://github.com/MDAnalysis/mdanalysis
Expand Down
2 changes: 1 addition & 1 deletion package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The rules for this file:
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------
??/??/?? IAlibay, pgbarletta, mglagolev, hmacdope, manuel.nuno.melo, chrispfae,
05/28/23 IAlibay, pgbarletta, mglagolev, hmacdope, manuel.nuno.melo, chrispfae,
ooprathamm, MeetB7, BFedder, v-parmar, MoSchaeffler, jbarnoud, jandom,
xhgchen, jaclark5, DrDomenicoMarson, AHMED-salah00, schlaicha,
SophiaRuan, g2707, p-j-smith, tylerjereddy, xiki-tempula, richardjgowers,
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
# e.g. with lib.log

#: Release of MDAnalysis as a string, using `semantic versioning`_.
__version__ = "2.5.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "2.5.0" # 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 @@ -67,7 +67,7 @@
from subprocess import getoutput

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

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 @@ -97,7 +97,7 @@
logger = logging.getLogger("MDAnalysisTests.__init__")

# keep in sync with RELEASE in setup.py
__version__ = "2.5.0-dev0"
__version__ = "2.5.0"


# Do NOT import MDAnalysis at this level. Tests should do it themselves.
Expand Down
2 changes: 1 addition & 1 deletion testsuite/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def run(self):

if __name__ == '__main__':
# this must be in-sync with MDAnalysis
RELEASE = "2.5.0-dev0"
RELEASE = "2.5.0"
with open("README") as summary:
LONG_DESCRIPTION = summary.read()

Expand Down

0 comments on commit fb9e0bc

Please sign in to comment.