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
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## v2.0.2 (2025-10-09)

* Removes `toml` dependency as it's unmaintained and doesn't support TOML 1.0
symtax. Replaced with `tomli`.
* Major refactor of the package to improve separation of concerns, testability,
and maintainability.

## v2.0.0 (2024-08-19)

## v1.4.3 (2024-01-11)

## v1.4.2 (2023-11-10)

## v1.4.1 (2023-11-09)

## v1.4.0 (2022-02-04)

## v1.3.0 (2021-12-23)

## v1.2.3 (2021-11-01)

## v1.2.2 (2021-10-28)

## v1.2.1 (2021-10-28)

## v1.2.0 (2021-10-28)

## v1.1.0 (2021-10-28)

## v1.0.0 (2021-10-27)

## v0.1.0 (2021-10-25)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "maison"
version = "2.0.1"
version = "2.0.2"
description = "Read settings from config files"
authors = [
{ name = "Dom Batten", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_parser() -> argparse.ArgumentParser:
def setup_release(increment: Optional[str] = None) -> None:
"""Prepares a release of the maison package.

Sets up a release branch from the branch develop, bumps the version, and creates a release commit. Does not tag the
Sets up a release branch from the main branch, bumps the version, and creates a release commit. Does not tag the
release or push any changes.
"""
check_dependencies(path=REPO_FOLDER, dependencies=["git"])
Expand Down
2 changes: 1 addition & 1 deletion scripts/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def create_release_branch(new_version: str) -> None:
"""Creates a release branch."""
commands: list[list[str]] = [
["git", "status", "--porcelain"],
["git", "checkout", "-b", f"release/{new_version}", "develop"],
["git", "checkout", "-b", f"release/{new_version}", "main"],
]
for command in commands:
subprocess.run(command, cwd=REPO_FOLDER, capture_output=True, check=True)
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading