Skip to content

Commit

Permalink
Release/0.10.0 (#254)
Browse files Browse the repository at this point in the history
* Bump to 0.10.0

* Update test_io files for 0.10.0

* Update changelog
  • Loading branch information
janbridley authored Feb 24, 2025
1 parent 0d7a4d4 commit eaac07b
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 12 deletions.
15 changes: 15 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ This project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html
v0.x.x - 20xx-xx-xx
-------------------

v0.10.0 - 2025-02-24
-------------------

Added
~~~~~

- Support for Python 3.13
- Rendered shape family tables in ReadTheDocs

Fixed
~~~~~

- ``to_hoomd`` method now properly exports convex polygons
- Warnings raised in test cases are now handled properly

v0.9.0 - 2024-09-13
-------------------

Expand Down
2 changes: 1 addition & 1 deletion coxeter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
applications such as inertia tensors.
"""

__version__ = "0.9.0"
__version__ = "0.10.0"

from . import families, io, shapes
from .shape_getters import from_gsd_type_shapes
Expand Down
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.9.0"
release = "0.9.0"
version = "0.10.0"
release = "0.10.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.9.0"
version = "0.10.0"
requires-python = ">=3.8"
description = "Tools for creating and manipulating shapes."
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion tests/control/convex_polyhedron.obj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# wavefront obj file written by Coxeter version 0.9.0
# wavefront obj file written by Coxeter version 0.10.0
# ConvexPolyhedron

v 0.0 0.0 1.2065695672061325
Expand Down
2 changes: 1 addition & 1 deletion tests/control/convex_polyhedron.off
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
OFF
# OFF file written by Coxeter version 0.9.0
# OFF file written by Coxeter version 0.10.0
# ConvexPolyhedron
11 f11 20
0.0 0.0 1.2065695672061325
Expand Down
2 changes: 1 addition & 1 deletion tests/control/convex_polyhedron.ply
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ply
format ascii 1.0
comment PLY file written by Coxeter version 0.9.0
comment PLY file written by Coxeter version 0.10.0
comment ConvexPolyhedron
element vertex 11
property float x
Expand Down
2 changes: 1 addition & 1 deletion tests/control/convex_polyhedron.vtk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# vtk DataFile Version 3.0
ConvexPolyhedron created by Coxeter version 0.9.0
ConvexPolyhedron created by Coxeter version 0.10.0
ASCII
DATASET POLYDATA
POINTS 11 float
Expand Down
2 changes: 1 addition & 1 deletion tests/control/polyhedron.obj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# wavefront obj file written by Coxeter version 0.9.0
# wavefront obj file written by Coxeter version 0.10.0
# Polyhedron

v 0.0 0.0 1.2065695672061325
Expand Down
2 changes: 1 addition & 1 deletion tests/control/polyhedron.off
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
OFF
# OFF file written by Coxeter version 0.9.0
# OFF file written by Coxeter version 0.10.0
# Polyhedron
11 f11 20
0.0 0.0 1.2065695672061325
Expand Down
2 changes: 1 addition & 1 deletion tests/control/polyhedron.ply
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ply
format ascii 1.0
comment PLY file written by Coxeter version 0.9.0
comment PLY file written by Coxeter version 0.10.0
comment Polyhedron
element vertex 11
property float x
Expand Down
2 changes: 1 addition & 1 deletion tests/control/polyhedron.vtk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# vtk DataFile Version 3.0
Polyhedron created by Coxeter version 0.9.0
Polyhedron created by Coxeter version 0.10.0
ASCII
DATASET POLYDATA
POINTS 11 float
Expand Down

0 comments on commit eaac07b

Please sign in to comment.