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 .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
version:
description: "Explicit version to release, e.g. 0.11.0"
description: "Explicit version to release, e.g. 0.11.1"
required: false
type: string
bump:
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v0.11.1 (2026-06-15)

- Fix package source discovery

Expand Down
2 changes: 1 addition & 1 deletion confit/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from importlib import metadata
from pathlib import Path

_BASE_VERSION = "0.11.0"
_BASE_VERSION = "0.11.1"


def get_version(base_version: str = _BASE_VERSION) -> str:
Expand Down
4 changes: 2 additions & 2 deletions scripts/prepare_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def run(
def normalize_version(version: str) -> str:
if not re.fullmatch(r"\d+\.\d+\.\d+", version):
raise ReleaseError(
f"Invalid version '{version}'. Expected a semantic version like 0.11.0."
f"Invalid version '{version}'. Expected a semantic version like 0.11.1."
)
return version

Expand Down Expand Up @@ -385,7 +385,7 @@ def build_parser() -> argparse.ArgumentParser:
parser.add_argument(
"version",
nargs="?",
help="Target version, for example 0.11.0",
help="Target version, for example 0.11.1",
)
parser.add_argument(
"--bump",
Expand Down
Loading