diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a8280ca8f..06a7de767 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.32.0' + rev: 'v2.32.1' hooks: - id: pyupgrade args: @@ -56,7 +56,7 @@ repos: hooks: - id: cmake-format - repo: https://github.com/pre-commit/mirrors-clang-format - rev: 'v14.0.1' + rev: 'v14.0.3' hooks: - id: clang-format types_or: [c, c++] diff --git a/ChangeLog.md b/ChangeLog.md index a901d84f3..4477f7b96 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,7 +4,7 @@ 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.10.0 -- 2022-05-18 ### Added * `include_input_points` argument to `freud.locality.PeriodicBuffer`. diff --git a/contributors.txt b/contributors.txt index 7faa54699..1e2d86029 100644 --- a/contributors.txt +++ b/contributors.txt @@ -1,21 +1,21 @@ 2355 Bradley Dice - 2143 Vyas Ramasubramani + 2144 Vyas Ramasubramani 1030 Eric Harper 456 Jin Soo Ihm - 294 Joshua A. Anderson + 316 Joshua A. Anderson 240 Matthew Spellings - 180 Tommy Waltmann + 196 Tommy Waltmann 167 Kelly Wang 126 DomFijan - 119 dependabot + 126 dependabot 110 Erin Teich - 86 Brandon Butler + 92 Brandon Butler 66 M. Eric Irrgang 62 Charlotte Shiqi Zhao 53 Chrisy Du 41 Yezhi Jin 40 Antonio Osorio - 37 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> + 38 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 35 Michael Stryk 31 Richmond Newman 26 Andrew Kerr diff --git a/doc/source/conf.py b/doc/source/conf.py index 8c29603aa..1c21fc0dd 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.9.0" -release = "2.9.0" +version = "2.10.0" +release = "2.10.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/extern/fsph b/extern/fsph index 11d4e640f..5896cffe2 160000 --- a/extern/fsph +++ b/extern/fsph @@ -1 +1 @@ -Subproject commit 11d4e640f14d25e74212d9bd1ca784e39206ba7c +Subproject commit 5896cffe2916763db57b801d2c9b092db232fc7a diff --git a/freud/__init__.py b/freud/__init__.py index 06096ca9f..a702ae193 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.9.0" +__version__ = "2.10.0" __all__ = [ "__version__", diff --git a/setup.cfg b/setup.cfg index 4a989d635..6cfa6d979 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.9.0 +current_version = 2.10.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/setup.py b/setup.py index ef4ae5827..088c6620b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from skbuild import setup -version = "2.9.0" +version = "2.10.0" # Read README for PyPI, fallback to short description if it fails. description = "Powerful, efficient trajectory analysis in scientific Python."