Skip to content

Commit

Permalink
Merge pull request #1036 from glotzerlab/release/2.12.0
Browse files Browse the repository at this point in the history
Release/2.12.0
  • Loading branch information
tommy-waltmann authored Nov 9, 2022
2 parents 269be88 + 1e8ff01 commit aa7f09a
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Jiwoong Yu <[email protected]> yjw0510 <[email protected]>
Kelly Wang <[email protected]> Kelly Wang <[email protected]>
Michael Stryk <[email protected]> mstryk <[email protected]>
Tommy Waltmann <[email protected]> tommy-waltmann <[email protected]>
Tommy Waltmann <[email protected]> Tommy Waltmann <[email protected]>
Patrick Lawton <[email protected]> patricklawton <[email protected]>
dependabot <dependabot[bot]@users.noreply.github.com> dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Pavel Buslaev <[email protected]> pbuslaev <[email protected]>
Expand All @@ -59,3 +60,4 @@ DomFijan <[email protected]> domagoj <[email protected]>
DomFijan <[email protected]> Domagoj Fijan <[email protected]>
DomFijan <[email protected]> Domagoj Fijan <[email protected]>
Dylan Marx <[email protected]> marxd1 <[email protected]>
Alain Kadar <[email protected]> AlainKadar <[email protected]>
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
5 changes: 3 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
9 changes: 5 additions & 4 deletions contributors.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
2356 Bradley Dice <[email protected]>
2357 Bradley Dice <[email protected]>
2146 Vyas Ramasubramani <[email protected]>
1030 Eric Harper <[email protected]>
462 Tommy Waltmann <[email protected]>
456 Jin Soo Ihm <[email protected]>
379 Tommy Waltmann <[email protected]>
316 Joshua A. Anderson <[email protected]>
240 Matthew Spellings <[email protected]>
167 Kelly Wang <[email protected]>
138 dependabot <dependabot[bot]@users.noreply.github.com>
163 dependabot <dependabot[bot]@users.noreply.github.com>
137 DomFijan <[email protected]>
110 Erin Teich <[email protected]>
97 Brandon Butler <[email protected]>
89 Charlotte Shiqi Zhao <[email protected]>
66 M. Eric Irrgang <[email protected]>
54 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
53 Chrisy Du <[email protected]>
52 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
41 Yezhi Jin <[email protected]>
40 Antonio Osorio <[email protected]>
35 Michael Stryk <[email protected]>
Expand All @@ -22,6 +22,7 @@
25 Andrew Kerr <[email protected]>
25 Carl Simon Adorf <[email protected]>
22 Jens Glaser <[email protected]>
21 Alain Kadar <[email protected]>
20 Tim Moore <[email protected]>
18 Kody Takada <[email protected]>
13 Pavel Buslaev <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion freud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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}.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit aa7f09a

Please sign in to comment.