Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion demo/demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
"```"
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down
12 changes: 6 additions & 6 deletions 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 = "weac"
version = "2.6.2"
version = "2.6.3"
authors = [
{name = "2phi GbR", email = "mail@2phi.de"},
]
Expand Down Expand Up @@ -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

Expand All @@ -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}\""
2 changes: 1 addition & 1 deletion weac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from weac.layered import Layered

# Version
__version__ = "2.6.1"
__version__ = "2.6.3"

Copilot AI Aug 14, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version mismatch detected: init.py shows version 2.6.3 but pyproject.toml was updated from 2.6.2 to 2.6.3, suggesting init.py should have been updated from 2.6.1 to 2.6.3. This inconsistency could cause version conflicts.

Copilot uses AI. Check for mistakes.

# Public names
__all__ = ["Layered", "Inverse", "plot"]
2 changes: 1 addition & 1 deletion weac/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down