multicz 0.2.1__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: multicz
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Multi-component versioning for monorepos: bump apps, charts, and images independently from conventional commits.
5
5
  Keywords: semver,monorepo,helm,conventional-commits,release,versioning
6
6
  Author: Chris
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "multicz"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "Multi-component versioning for monorepos: bump apps, charts, and images independently from conventional commits."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -0,0 +1,3 @@
1
+ from .cli import app
2
+
3
+ app()
@@ -1047,7 +1047,8 @@ def _run_post_bump_hook(repo: Path, command: str) -> None:
1047
1047
  args = shlex.split(command)
1048
1048
  if not args:
1049
1049
  return
1050
- console.print(f" [dim]post_bump:[/] {command}")
1050
+ # stderr, so `multicz bump --output json | jq` stays parseable.
1051
+ err.print(f" [dim]post_bump:[/] {command}")
1051
1052
  result = subprocess.run(
1052
1053
  args, cwd=repo, capture_output=True, text=True
1053
1054
  )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes