Skip to content

Commit a632cf4

Browse files
Version updated from 0.5.0 to 0.5.1
1 parent 968387c commit a632cf4

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 0.5.1 (2025-05-10)
4+
[Compare the full difference.](https://github.com/callowayproject/project-forge/compare/0.5.0...0.5.1)
5+
6+
### Fixes
7+
8+
- Fixed installation of bump-my-version. [a1b8b59](https://github.com/callowayproject/project-forge/commit/a1b8b59fd22007df550929ed5ef6bdf0c83ebd35)
9+
10+
- Refactor CLI to parse composition as git URL. [78282f2](https://github.com/callowayproject/project-forge/commit/78282f2523baeae3d17629a6af1f4148fd39f987)
11+
12+
Updated the `composition` argument in the `build` command to accept a git URL instead of a file path. Added parsing logic to convert the URL into a file path before processing, enabling more flexible input handling.
13+
- Refactor workflows for improved release management. [b9d119b](https://github.com/callowayproject/project-forge/commit/b9d119b7bf66db57dde852cf7f455adc5095abf1)
14+
15+
Updated workflows to support passing a reference (ref) input for consistent release processes. Renamed jobs, fixed pip command, and added outputs like tag_name for improved clarity and functionality.
16+
- Fixed permissions on release-github and release-pypi workflows. [36502b4](https://github.com/callowayproject/project-forge/commit/36502b4b9a5a3c195385a513afa2a50c7f978903)
17+
18+
### Other
19+
20+
- Reformated the CHANGELOG.md file. [d9e9def](https://github.com/callowayproject/project-forge/commit/d9e9def463f66398360a575c673792f953dd9e44)
21+
22+
- Simplify workflow definition by replacing steps with "uses". [74e023a](https://github.com/callowayproject/project-forge/commit/74e023ad4ca35d4450cb0ff904c8c9474c72bf27)
23+
24+
Removed explicit steps under `release-github` and `release-pypi` jobs, replacing them with direct `uses` references to corresponding workflow files.
25+
326
## 0.5.0 (2025-05-10)
427

528
[Compare the full difference.](https://github.com/callowayproject/project-forge/compare/0.4.0...0.5.0)

project_forge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Top-level package for project-forge."""
22

3-
__version__ = "0.5.0"
3+
__version__ = "0.5.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ skip-checking-raises = true
254254
quiet = true
255255

256256
[tool.bumpversion]
257-
current_version = "0.5.0"
257+
current_version = "0.5.1"
258258
commit = true
259259
commit_args = "--no-verify"
260260
tag = true

0 commit comments

Comments
 (0)