From 609e98c16daa79beafa262e964ccf163a96cb0be Mon Sep 17 00:00:00 2001 From: Martin Schubert Date: Thu, 23 May 2024 13:48:38 -0700 Subject: [PATCH] Version updated from v0.7.0 to v0.7.1 --- .bumpversion.toml | 2 +- README.md | 2 +- pyproject.toml | 2 +- src/totypes/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 52acb77..be8f6ae 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "v0.7.0" +current_version = "v0.7.1" commit = true commit_args = "--no-verify" tag = true diff --git a/README.md b/README.md index 71c26d3..dd14906 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # totypes - Custom types for topology optimization -`v0.7.0` +`v0.7.1` ## Overview diff --git a/pyproject.toml b/pyproject.toml index 3559d69..4de7474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "totypes" -version = "v0.7.0" +version = "v0.7.1" description = "Custom datatypes useful in a topology optimization context" keywords = ["topology", "optimization", "jax", "inverse design"] readme = "README.md" diff --git a/src/totypes/__init__.py b/src/totypes/__init__.py index e8a4782..ad2ed4b 100644 --- a/src/totypes/__init__.py +++ b/src/totypes/__init__.py @@ -3,7 +3,7 @@ Copyright (c) 2023 The INVRS-IO authors. """ -__version__ = "v0.7.0" +__version__ = "v0.7.1" __author__ = "Martin F. Schubert " __all__ = ["json_utils", "symmetry", "types"]