Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 2.13.2 #1178

Merged
merged 10 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13.1
placeholder: v2.13.2
validations:
required: true
- type: input
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exclude: (?:^extern/)

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v4.4.0'
rev: 'v4.5.0'
hooks:
- id: end-of-file-fixer
exclude: |
Expand Down Expand Up @@ -56,7 +56,7 @@ repos:
- --add=This file is from the freud project, released under the BSD 3-Clause License.
- --comment-prefix=//
- repo: https://github.com/asottile/pyupgrade
rev: 'v3.13.0'
rev: 'v3.15.0'
hooks:
- id: pyupgrade
args:
Expand All @@ -66,7 +66,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: '23.9.1'
rev: '23.11.0'
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
Expand All @@ -83,7 +83,7 @@ repos:
hooks:
- id: cmake-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v16.0.6'
rev: 'v17.0.5'
hooks:
- id: clang-format
types_or: [c, c++]
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.13.2 -- 2023-11-27

### Added
* Support for python 3.12
Expand Down
8 changes: 4 additions & 4 deletions contributors.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
2357 Bradley Dice <[email protected]>
2148 Vyas Ramasubramani <[email protected]>
1030 Eric Harper <[email protected]>
786 Tommy Waltmann <[email protected]>
833 Tommy Waltmann <[email protected]>
456 Jin Soo Ihm <[email protected]>
318 Joshua A. Anderson <[email protected]>
325 Joshua A. Anderson <[email protected]>
253 dependabot <dependabot[bot]@users.noreply.github.com>
240 Matthew Spellings <[email protected]>
235 dependabot <dependabot[bot]@users.noreply.github.com>
173 DomFijan <[email protected]>
167 Kelly Wang <[email protected]>
110 Erin Teich <[email protected]>
98 Brandon Butler <[email protected]>
94 Charlotte Shiqi Zhao <[email protected]>
76 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
78 pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
66 M. Eric Irrgang <[email protected]>
53 Chrisy Du <[email protected]>
41 Yezhi Jin <[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 @@ -72,8 +72,8 @@
# built documents.
#
# version and release are set the same for this package.
version = "2.13.1"
release = "2.13.1"
version = "2.13.2"
release = "2.13.2"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/gettingstarted/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Compile from source
The following are **required** for building and installing **freud** from source:

- A C++17-compliant compiler
- `Python <https://www.python.org/>`__ (>=3.7)
- `Python <https://www.python.org/>`__ (>=3.8)
- `NumPy <https://www.numpy.org/>`__ (>=1.14)
- `Intel Threading Building Blocks <https://www.threadingbuildingblocks.org/>`__ (>=2019.7)
- `Cython <https://cython.org/>`__ (>=3.0.2)
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.13.1"
__version__ = "2.13.2"

__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.13.1
current_version = 2.13.2
commit = True
tag = False
message = Bump up to version {new_version}.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from skbuild import setup

version = "2.13.1"
version = "2.13.2"

# Read README for PyPI, fallback to short description if it fails.
description = "Powerful, efficient trajectory analysis in scientific Python."
Expand Down Expand Up @@ -36,11 +36,11 @@
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
zip_safe=False,
maintainer="freud Developers",
Expand All @@ -56,7 +56,7 @@
"Source Code": "https://github.com/glotzerlab/freud",
"Issue Tracker": "https://github.com/glotzerlab/freud/issues",
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"numpy>=1.14",
"rowan>=1.2.1",
Expand Down
Loading