From 7e1fabeedb6b044a111477e27f8908583fe7564f Mon Sep 17 00:00:00 2001 From: Martin Schubert Date: Fri, 27 Oct 2023 18:40:26 -0700 Subject: [PATCH] Version updated from v0.1.1 to v0.1.2 --- .bumpversion.toml | 2 +- README.md | 2 +- pyproject.toml | 4 ++-- src/invrs_opt/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index c4071d9..af9227f 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "v0.1.1" +current_version = "v0.1.2" commit = true commit_args = "--no-verify" tag = true diff --git a/README.md b/README.md index 05fb10f..697a8e5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # invrs-opt - Optimization algorithms for inverse design -`v0.1.1` +`v0.1.2` ## Overview diff --git a/pyproject.toml b/pyproject.toml index b5e9e62..060e39f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "invrs_opt" -version = "v0.1.1" +version = "v0.1.2" description = "Algorithms for inverse design" keywords = ["topology", "optimization", "jax", "inverse design"] readme = "README.md" @@ -42,7 +42,7 @@ requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.package-data] -"totypes" = ["py.typed"] +"invrs_opt" = ["py.typed"] [tool.pytest.ini_options] addopts = ["--import-mode=importlib"] # Allow tests with same name in different dirs. diff --git a/src/invrs_opt/__init__.py b/src/invrs_opt/__init__.py index 61e8aa1..b4a3b71 100644 --- a/src/invrs_opt/__init__.py +++ b/src/invrs_opt/__init__.py @@ -3,7 +3,7 @@ Copyright (c) 2023 The INVRS-IO authors. """ -__version__ = "v0.1.1" +__version__ = "v0.1.2" __author__ = "Martin F. Schubert " from invrs_opt.lbfgsb.lbfgsb import lbfgsb as lbfgsb