diff --git a/CITATION.cff b/CITATION.cff index b741b78..c7342e0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ authors: - family-names: "Weissgraeber" given-names: "Philipp" orcid: "https://orcid.org/0000-0001-8320-8672" -version: 2.6.2 +version: 2.6.3 date-released: 2021-12-30 identifiers: - description: Collection of archived snapshots of all versions of WEAC diff --git a/demo/demo.ipynb b/demo/demo.ipynb index dba82f9..82aed7c 100644 --- a/demo/demo.ipynb +++ b/demo/demo.ipynb @@ -13,7 +13,7 @@ "id": "7d6c2b96", "metadata": {}, "source": [ - "Note that instructions in this notebook refer to **release v2.6.2**. Please make sure you are running the latest version of weac using\n", + "Note that instructions in this notebook refer to **release v2.6.3**. Please make sure you are running the latest version of weac using\n", "```sh\n", "pip install -U weac\n", "```" diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py index a79c2c0..4301d6a 100644 --- a/docs/sphinx/conf.py +++ b/docs/sphinx/conf.py @@ -10,7 +10,7 @@ project = "WEAC" copyright = "2024, 2phi GbR" author = "P.L. Rosendahl, P. Weissgraeber, F. Rheinschmidt, J. Schneider" -release = "2.6.1" +release = "2.6.3" github_url = "https://github.com/2phi/weac" diff --git a/pyproject.toml b/pyproject.toml index ae26ffa..1f2c146 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "weac" -version = "2.6.2" +version = "2.6.3" authors = [ {name = "2phi GbR", email = "mail@2phi.de"}, ] @@ -77,7 +77,7 @@ ignore-patterns = [".*\\.ipynb$"] ignore = ["E121", "E123", "E126", "E211", "E226", "E24", "E704", "W503", "W504", "E741"] [tool.bumpversion] -current_version = "2.6.2" +current_version = "2.6.3" tag = true commit = true @@ -89,13 +89,13 @@ filename = "CITATION.cff" [[tool.bumpversion.files]] filename = "weac/__init__.py" -search = "__version__ = '{current_version}'" -replace = "__version__ = '{new_version}'" +search = "__version__ = \"{current_version}\"" +replace = "__version__ = \"{new_version}\"" [[tool.bumpversion.files]] filename = "demo/demo.ipynb" [[tool.bumpversion.files]] filename = "docs/sphinx/conf.py" -search = "release = '{current_version}'" -replace = "release = '{new_version}'" +search = "release = \"{current_version}\"" +replace = "release = \"{new_version}\"" diff --git a/weac/__init__.py b/weac/__init__.py index 946c99f..2d3b8a0 100644 --- a/weac/__init__.py +++ b/weac/__init__.py @@ -11,7 +11,7 @@ from weac.layered import Layered # Version -__version__ = "2.6.1" +__version__ = "2.6.3" # Public names __all__ = ["Layered", "Inverse", "plot"] diff --git a/weac/mixins.py b/weac/mixins.py index 83836c7..b2df5db 100644 --- a/weac/mixins.py +++ b/weac/mixins.py @@ -779,8 +779,8 @@ def set_touchdown_attributes(self, L, a, cf, phi, ratio): """Set class attributes for touchdown consideration""" self.set_columnlength(L) self.set_cracklength(a) - self.set_tc(cf) self.set_phi(phi) + self.set_tc(cf) self.set_stiffness_ratio(ratio) def calc_touchdown_mode(self):