Skip to content

Commit 08faad5

Browse files
Merge pull request #1178 from glotzerlab/release/v2.13.2
Release version 2.13.2
2 parents 39ea38d + 2de33ab commit 08faad5

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ body:
2626
attributes:
2727
label: freud Version
2828
description: What version of freud are you using?
29-
placeholder: v2.13.1
29+
placeholder: v2.13.2
3030
validations:
3131
required: true
3232
- type: input

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude: (?:^extern/)
55

66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: 'v4.4.0'
8+
rev: 'v4.5.0'
99
hooks:
1010
- id: end-of-file-fixer
1111
exclude: |
@@ -56,7 +56,7 @@ repos:
5656
- --add=This file is from the freud project, released under the BSD 3-Clause License.
5757
- --comment-prefix=//
5858
- repo: https://github.com/asottile/pyupgrade
59-
rev: 'v3.13.0'
59+
rev: 'v3.15.0'
6060
hooks:
6161
- id: pyupgrade
6262
args:
@@ -66,7 +66,7 @@ repos:
6666
hooks:
6767
- id: isort
6868
- repo: https://github.com/psf/black
69-
rev: '23.9.1'
69+
rev: '23.11.0'
7070
hooks:
7171
- id: black
7272
- repo: https://github.com/PyCQA/flake8
@@ -83,7 +83,7 @@ repos:
8383
hooks:
8484
- id: cmake-format
8585
- repo: https://github.com/pre-commit/mirrors-clang-format
86-
rev: 'v16.0.6'
86+
rev: 'v17.0.5'
8787
hooks:
8888
- id: clang-format
8989
types_or: [c, c++]

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The format is based on
44
and this project adheres to
55
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## vX.Y.Z -- YYYY-MM-DD
7+
## v2.13.2 -- 2023-11-27
88

99
### Added
1010
* Support for python 3.12

contributors.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
2357 Bradley Dice <[email protected]>
22
2148 Vyas Ramasubramani <[email protected]>
33
1030 Eric Harper <[email protected]>
4-
786 Tommy Waltmann <[email protected]>
4+
833 Tommy Waltmann <[email protected]>
55
456 Jin Soo Ihm <[email protected]>
6-
318 Joshua A. Anderson <[email protected]>
6+
325 Joshua A. Anderson <[email protected]>
7+
253 dependabot <dependabot[bot]@users.noreply.github.com>
78
240 Matthew Spellings <[email protected]>
8-
235 dependabot <dependabot[bot]@users.noreply.github.com>
99
173 DomFijan <[email protected]>
1010
167 Kelly Wang <[email protected]>
1111
110 Erin Teich <[email protected]>
1212
98 Brandon Butler <[email protected]>
1313
94 Charlotte Shiqi Zhao <[email protected]>
14-
76 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
14+
78 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1515
66 M. Eric Irrgang <[email protected]>
1616
53 Chrisy Du <[email protected]>
1717
41 Yezhi Jin <[email protected]>

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
# built documents.
7373
#
7474
# version and release are set the same for this package.
75-
version = "2.13.1"
76-
release = "2.13.1"
75+
version = "2.13.2"
76+
release = "2.13.2"
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

doc/source/gettingstarted/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Compile from source
3333
The following are **required** for building and installing **freud** from source:
3434

3535
- A C++17-compliant compiler
36-
- `Python <https://www.python.org/>`__ (>=3.7)
36+
- `Python <https://www.python.org/>`__ (>=3.8)
3737
- `NumPy <https://www.numpy.org/>`__ (>=1.14)
3838
- `Intel Threading Building Blocks <https://www.threadingbuildingblocks.org/>`__ (>=2019.7)
3939
- `Cython <https://cython.org/>`__ (>=3.0.2)

freud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# automatic selection runs, the user cannot change it.
2424
set_num_threads(0)
2525

26-
__version__ = "2.13.1"
26+
__version__ = "2.13.2"
2727

2828
__all__ = [
2929
"__version__",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.13.1
2+
current_version = 2.13.2
33
commit = True
44
tag = False
55
message = Bump up to version {new_version}.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from skbuild import setup
77

8-
version = "2.13.1"
8+
version = "2.13.2"
99

1010
# Read README for PyPI, fallback to short description if it fails.
1111
description = "Powerful, efficient trajectory analysis in scientific Python."
@@ -36,11 +36,11 @@
3636
"Topic :: Scientific/Engineering :: Physics",
3737
"Programming Language :: C++",
3838
"Programming Language :: Cython",
39-
"Programming Language :: Python :: 3.7",
4039
"Programming Language :: Python :: 3.8",
4140
"Programming Language :: Python :: 3.9",
4241
"Programming Language :: Python :: 3.10",
4342
"Programming Language :: Python :: 3.11",
43+
"Programming Language :: Python :: 3.12",
4444
],
4545
zip_safe=False,
4646
maintainer="freud Developers",
@@ -56,7 +56,7 @@
5656
"Source Code": "https://github.com/glotzerlab/freud",
5757
"Issue Tracker": "https://github.com/glotzerlab/freud/issues",
5858
},
59-
python_requires=">=3.7",
59+
python_requires=">=3.8",
6060
install_requires=[
6161
"numpy>=1.14",
6262
"rowan>=1.2.1",

0 commit comments

Comments
 (0)