From 8bddd4f58af95898f8abd13c634f27efd2f328c9 Mon Sep 17 00:00:00 2001 From: Tommy Waltmann Date: Wed, 9 Nov 2022 09:47:05 -0500 Subject: [PATCH 1/2] pre-release updates --- .mailmap | 2 ++ .pre-commit-config.yaml | 4 ++-- ChangeLog.md | 5 +++-- contributors.txt | 9 +++++---- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.mailmap b/.mailmap index 0858b2bf3..146defe2f 100644 --- a/.mailmap +++ b/.mailmap @@ -45,6 +45,7 @@ Jiwoong Yu yjw0510 Kelly Wang Kelly Wang <47036428+klywang@users.noreply.github.com> Michael Stryk mstryk <60406122+mstryk@users.noreply.github.com> Tommy Waltmann tommy-waltmann <53307607+tommy-waltmann@users.noreply.github.com> +Tommy Waltmann Tommy Waltmann <53307607+tommy-waltmann@users.noreply.github.com> Patrick Lawton patricklawton dependabot dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Pavel Buslaev pbuslaev @@ -59,3 +60,4 @@ DomFijan domagoj DomFijan Domagoj Fijan <50439291+DomFijan@users.noreply.github.com> DomFijan Domagoj Fijan Dylan Marx marxd1 <93282247+marxd1@users.noreply.github.com> +Alain Kadar AlainKadar <73320455+AlainKadar@users.noreply.github.com> diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 166e1a364..3365b5291 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: - id: debug-statements - id: requirements-txt-fixer - repo: https://github.com/asottile/pyupgrade - rev: 'v2.38.2' + rev: 'v3.2.0' hooks: - id: pyupgrade args: @@ -39,7 +39,7 @@ repos: hooks: - id: isort - repo: https://github.com/psf/black - rev: '22.8.0' + rev: '22.10.0' hooks: - id: black - repo: https://github.com/PyCQA/flake8 diff --git a/ChangeLog.md b/ChangeLog.md index a3efe24ec..f940a306a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,10 +4,11 @@ The format is based on and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## vX.Y.Z -- YYYY-MM-DD +## v2.12.0 -- 2022-11-09 ### Added -* Mass dependence in `freud.cluster.ClusterProperties` and calculation of inertia tensor and center of mass. +* Mass dependence in `freud.cluster.ClusterProperties`. +* Inertia tensor calculation in `freud.cluster.ClusterProperties`. ### Fixed * Compatibility with new namespace for `MDAnalysis.coordinates.timestep.Timestep`. diff --git a/contributors.txt b/contributors.txt index b20d4e111..bc32bb2dc 100644 --- a/contributors.txt +++ b/contributors.txt @@ -1,19 +1,19 @@ - 2356 Bradley Dice + 2357 Bradley Dice 2146 Vyas Ramasubramani 1030 Eric Harper + 462 Tommy Waltmann 456 Jin Soo Ihm - 379 Tommy Waltmann 316 Joshua A. Anderson 240 Matthew Spellings 167 Kelly Wang - 138 dependabot + 163 dependabot 137 DomFijan 110 Erin Teich 97 Brandon Butler 89 Charlotte Shiqi Zhao 66 M. Eric Irrgang + 54 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 53 Chrisy Du - 52 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 41 Yezhi Jin 40 Antonio Osorio 35 Michael Stryk @@ -22,6 +22,7 @@ 25 Andrew Kerr 25 Carl Simon Adorf 22 Jens Glaser + 21 Alain Kadar 20 Tim Moore 18 Kody Takada 13 Pavel Buslaev From 1e8ff0180fb94374eedbaeb758c7ff699e398f17 Mon Sep 17 00:00:00 2001 From: Tommy Waltmann Date: Wed, 9 Nov 2022 09:48:19 -0500 Subject: [PATCH 2/2] Bump up to version 2.12.0. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- doc/source/conf.py | 4 ++-- freud/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3ed50930f..657d83fa3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -26,7 +26,7 @@ body: attributes: label: freud Version description: What version of freud are you using? - placeholder: v2.11.0 + placeholder: v2.12.0 validations: required: true - type: input diff --git a/doc/source/conf.py b/doc/source/conf.py index 9979531ff..15b070ff8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -70,8 +70,8 @@ # built documents. # # version and release are set the same for this package. -version = "2.11.0" -release = "2.11.0" +version = "2.12.0" +release = "2.12.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/freud/__init__.py b/freud/__init__.py index 6cc64ef12..ee6264e39 100644 --- a/freud/__init__.py +++ b/freud/__init__.py @@ -23,7 +23,7 @@ # automatic selection runs, the user cannot change it. set_num_threads(0) -__version__ = "2.11.0" +__version__ = "2.12.0" __all__ = [ "__version__", diff --git a/setup.cfg b/setup.cfg index d863d1e31..b94e92fce 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.11.0 +current_version = 2.12.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/setup.py b/setup.py index a58163ce0..30fa091ad 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from skbuild import setup -version = "2.11.0" +version = "2.12.0" # Read README for PyPI, fallback to short description if it fails. description = "Powerful, efficient trajectory analysis in scientific Python."