diff --git a/docs/source/about/changelog.rst b/docs/source/about/changelog.rst index e4e98037c..e6fdacb9c 100644 --- a/docs/source/about/changelog.rst +++ b/docs/source/about/changelog.rst @@ -26,13 +26,6 @@ Unreleased No changes. -v1.0.0 ------- -:octicon:`milestone` *released on 2023-02-25* - -No changes. - - v1.0.0-a6 --------- :octicon:`milestone` *released on 2023-02-23* diff --git a/noxfile.py b/noxfile.py index beca6166e..d5c5982c8 100644 --- a/noxfile.py +++ b/noxfile.py @@ -229,7 +229,7 @@ def build_python(session: Session) -> None: @group.session -def tag(session: Session) -> None: +def tag(session: Session, version: str) -> None: """Create a new git tag""" try: session.run( @@ -254,7 +254,7 @@ def tag(session: Session) -> None: session.error("To many arguments") try: - new_version = session.posargs[0] + new_version = version except IndexError: session.error("No version tag given")