Skip to content

Commit 59aae2c

Browse files
authored
Finalize v2.9.0 release (#4955)
* Finalize v2.9.0 release
1 parent c83d030 commit 59aae2c

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

package/CHANGELOG

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,32 @@ The rules for this file:
1414

1515

1616
-------------------------------------------------------------------------------
17-
??/??/?? IAlibay, ChiahsinChu, RMeli, tanishy7777, talagayev, tylerjereddy,
17+
03/11/25 IAlibay, ChiahsinChu, RMeli, tanishy7777, talagayev, tylerjereddy,
1818
marinegor, hmacdope, jauy123, al42and
1919

2020
* 2.9.0
2121

2222
Fixes
2323
* Add support for TPR files produced by GROMACS 2024.4 and GROMACS 2025.0
24-
* Fixes invalid default unit from Angstrom to Angstrom^{-3} for convert_density() function. (Issue #4829)
25-
* Fixes deprecation warning Array to scalar convertion. Replaced atan2() with np.arctan2() (Issue #4339)
24+
* Fixes invalid default unit from Angstrom to Angstrom^{-3} for
25+
convert_density() function. (Issue #4829)
26+
* Fixes deprecation warning Array to scalar convertion. Replaced atan2()
27+
with np.arctan2() (Issue #4339)
2628
* Replaced mutable defaults with None and initialized them within
2729
the function to prevent shared state. (Issue #4655)
2830

2931
Enhancements
3032
* Improve distopia backend support in line with new functionality available
3133
in distopia >= 0.3.1 (PR #4734)
3234
* Addition of 'water' token for water selection (Issue #4839)
33-
* Enables parallelization for analysis.density.DensityAnalysis (Issue #4677, PR #4729)
35+
* Enables parallelization for analysis.density.DensityAnalysis
36+
(Issue #4677, PR #4729)
3437
* Enables parallelization for analysis.contacts.Contacts (Issue #4660)
3538
* Enable parallelization for analysis.nucleicacids.NucPairDist (Issue #4670)
36-
* Add check and warning for empty (all zero) coordinates in RDKit converter (PR #4824)
39+
* Add check and warning for empty (all zero) coordinates in RDKit converter
40+
(PR #4824)
3741
* Added `precision` for XYZWriter (Issue #4775, PR #4771)
3842

39-
4043
Changes
4144
* MDAnalysis.analysis.psa, MDAnalysis.analysis.waterdynamics and
4245
MDAnalysis.analysis.hole2 are now no longer available by default in
@@ -46,8 +49,6 @@ Changes
4649
* Changed `fasteners` dependency to `filelock` (Issue #4797, PR #4800)
4750
* Codebase is now formatted with black (version `24`) (PR #4886)
4851

49-
Deprecations
50-
5152

5253
11/11/24 IAlibay, HeetVekariya, marinegor, lilyminium, RMeli,
5354
ljwoods2, aditya292002, pstaerk, PicoCentauri, BFedder,

package/MDAnalysis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
# e.g. with lib.log
6868

6969
#: Release of MDAnalysis as a string, using `semantic versioning`_.
70-
__version__ = "2.9.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
70+
__version__ = "2.9.0" # NOTE: keep in sync with RELEASE in setup.py

package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
from subprocess import getoutput
5959

6060
# NOTE: keep in sync with MDAnalysis.__version__ in version.py
61-
RELEASE = "2.9.0-dev0"
61+
RELEASE = "2.9.0"
6262

6363
is_release = "dev" not in RELEASE
6464

testsuite/MDAnalysisTests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
logger = logging.getLogger("MDAnalysisTests.__init__")
9898

9999
# keep in sync with RELEASE in setup.py
100-
__version__ = "2.9.0-dev0"
100+
__version__ = "2.9.0"
101101

102102

103103
# Do NOT import MDAnalysis at this level. Tests should do it themselves.

testsuite/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def run(self):
7575

7676
if __name__ == "__main__":
7777
# this must be in-sync with MDAnalysis
78-
RELEASE = "2.9.0-dev0"
78+
RELEASE = "2.9.0"
7979

8080
setup(
8181
version=RELEASE,

0 commit comments

Comments
 (0)