diff --git a/.mailmap b/.mailmap index 58f719cfc..0858b2bf3 100644 --- a/.mailmap +++ b/.mailmap @@ -57,4 +57,5 @@ Charlotte Shiqi Zhao Charlotte Shiqi Zhao <56694726+Charlotte Emily Siew esiew DomFijan domagoj DomFijan Domagoj Fijan <50439291+DomFijan@users.noreply.github.com> +DomFijan Domagoj Fijan Dylan Marx marxd1 <93282247+marxd1@users.noreply.github.com> diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 15905350a..c52aee3b2 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.34.0' + rev: 'v2.37.3' hooks: - id: pyupgrade args: @@ -43,7 +43,7 @@ repos: hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: '4.0.1' + rev: '5.0.4' hooks: - id: flake8 types: ["file"] diff --git a/ChangeLog.md b/ChangeLog.md index 43b1954e4..2f041baaa 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). -## v2.11.0 -- XXXX-XX-XX +## v2.11.0 -- 2022-08-09 ### Added * Support for 2D systems in `freud.diffraction.StaticStructureFactorDebye`. diff --git a/contributors.txt b/contributors.txt index 1e2d86029..b20d4e111 100644 --- a/contributors.txt +++ b/contributors.txt @@ -1,56 +1,57 @@ - 2355 Bradley Dice - 2144 Vyas Ramasubramani + 2356 Bradley Dice + 2146 Vyas Ramasubramani 1030 Eric Harper 456 Jin Soo Ihm + 379 Tommy Waltmann 316 Joshua A. Anderson 240 Matthew Spellings - 196 Tommy Waltmann 167 Kelly Wang - 126 DomFijan - 126 dependabot + 138 dependabot + 137 DomFijan 110 Erin Teich - 92 Brandon Butler + 97 Brandon Butler + 89 Charlotte Shiqi Zhao 66 M. Eric Irrgang - 62 Charlotte Shiqi Zhao 53 Chrisy Du + 52 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 41 Yezhi Jin 40 Antonio Osorio - 38 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> 35 Michael Stryk 31 Richmond Newman 26 Andrew Kerr - 25 Carl Simon Adorf 25 Andrew Kerr + 25 Carl Simon Adorf 22 Jens Glaser 20 Tim Moore + 18 Kody Takada 13 Pavel Buslaev - 10 Matt Palathingal 10 Benjamin Schultz 10 Bryan VanSaders + 10 Matt Palathingal 9 Andrew Karas 9 Mike Henry 9 SyedZiaul <89724726+SyedZiaul@users.noreply.github.com> - 8 Ryan Marson 8 Fengyi Gao - 6 Tom Grubb - 6 James Proctor + 8 Ryan Marson 6 Allen LaCour - 6 Yina Geng + 6 James Proctor 6 Pengji Zhou + 6 Tom Grubb + 6 Yina Geng 5 Alex Dutton 5 Carolyn Phillips - 4 Mayank Agrawal - 4 William Zygmunt 4 Ben Swerdlow 4 James Antonaglia - 3 Rose Cersonsky + 4 Mayank Agrawal + 4 William Zygmunt 3 Greg van Anders + 3 Rose Cersonsky 3 Wenbo Shen 2 Emily Siew 2 Maya Martirossyan - 1 Roy Kid - 1 Paul Dodd - 1 Patrick Lawton - 1 Luis Y. Rivera-Rivera - 1 Jiwoong Yu 1 Dylan Marx + 1 Jiwoong Yu + 1 Luis Y. Rivera-Rivera + 1 Patrick Lawton + 1 Paul Dodd + 1 Roy Kid diff --git a/doc/source/conf.py b/doc/source/conf.py index 1c21fc0dd..8ad6d30bb 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.10.0" -release = "2.10.0" +version = "2.11.0" +release = "2.11.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/source/gettingstarted/examples b/doc/source/gettingstarted/examples index 6c2699e3b..811ed6fd7 160000 --- a/doc/source/gettingstarted/examples +++ b/doc/source/gettingstarted/examples @@ -1 +1 @@ -Subproject commit 6c2699e3b522ba2a863c342bebec4e93293b8eb0 +Subproject commit 811ed6fd7bf8c0690c0b2471a6c9ccfc931cd234 diff --git a/doc/source/gettingstarted/installation.rst b/doc/source/gettingstarted/installation.rst index bd463167c..ab8e352d2 100644 --- a/doc/source/gettingstarted/installation.rst +++ b/doc/source/gettingstarted/installation.rst @@ -32,7 +32,7 @@ Compile from source The following are **required** for building and installing **freud** from source: -- A C++14-compliant compiler +- A C++17-compliant compiler - `Python `__ (>=3.6) - `NumPy `__ (>=1.14) - `Intel Threading Building Blocks `__ (>=2019.7) diff --git a/freud/__init__.py b/freud/__init__.py index a702ae193..6cc64ef12 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.10.0" +__version__ = "2.11.0" __all__ = [ "__version__", diff --git a/setup.cfg b/setup.cfg index 6cfa6d979..6044ce94f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.10.0 +current_version = 2.11.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/setup.py b/setup.py index 088c6620b..a58163ce0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from skbuild import setup -version = "2.10.0" +version = "2.11.0" # Read README for PyPI, fallback to short description if it fails. description = "Powerful, efficient trajectory analysis in scientific Python."