Skip to content

Commit

Permalink
Release v0.7.0 (#198)
Browse files Browse the repository at this point in the history
* Bumped to version v0.7.0.

* Update ChangeLog.rst.

* Restored setup.cfg comments

* Fixed whitespace differences

* Added missing newline to ChangeLog.rst

* Updated pre-commit hooks to require tomli
  • Loading branch information
janbridley authored Sep 18, 2023
1 parent ebd85a5 commit 642868c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ repos:
hooks:
- id: pydocstyle
exclude: '(?:extern/.*|tests/.*|setup.py|conf.py)'
additional_dependencies: [
'tomli'
]
- repo: https://github.com/PyCQA/flake8
rev: '6.0.0'
hooks:
Expand Down
16 changes: 13 additions & 3 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
The format is based on `Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`__.
This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`__.

v0.7.0 - 202x-xx-xx
v0.7.0 - 2023-09-18
-------------------

Fixed
~~~~~

- Numerical precision issues in tests.
- GSD spec correctly outputs for `Polyhedron` objects.
- Error in `__repr__` for polyhedra with multiple face degrees.
- ReadTheDocs build errors resulting from `conda` memory usage.

Changed
~~~~~~~

- The minimum required Python version is now 3.8.
- The minimum required NumPy version is now 1.19.
- Speed up point in polygon using NumPy.
- Speed up point in polyhedron using NumPy.
- [breaking] Sped up point in polygon and point in polyhedron using NumPy.
- Migrated to pyproject.toml.

Added
~~~~~

- New `edges` and `edge_vectors` properties for polyhedra.
- New shape families for Archimedean, Catalan, and Johnson shapes.
- New shape families for regular pyramids and dipyramids, and a selection of regular prisms and antiprisms.

v0.6.1 - 2021-07-15
-------------------
Expand Down
2 changes: 1 addition & 1 deletion coxeter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

__all__ = ["families", "shapes", "from_gsd_type_shapes"]

__version__ = "0.6.1"
__version__ = "0.7.0"
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
author = "Vyas Ramasubramani"

# The full version, including alpha/beta/rc tags
version = "0.6.1"
release = "0.6.1"
version = "0.7.0"
release = "0.7.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "coxeter"
version = "0.6.1"
version = "0.7.0"
requires-python = ">=3.8"
description = "Tools for creating and manipulating shapes."
readme = "README.rst"
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 = 0.6.1
current_version = 0.7.0
commit = False
tag = True
message = Bump up to version {new_version}.
Expand Down

0 comments on commit 642868c

Please sign in to comment.