Skip to content

Commit 3872cb1

Browse files
chore(release): v1.3.0
1 parent 812039e commit 3872cb1

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
<!-- version list -->
44

5+
## v1.3.0 (2025-06-19)
6+
7+
### Features
8+
- feat(scripts): migrate to pathlib for file and directory operations ([`1ba7b5c`](https://github.com/andyvandaric/avcmt-py/commit/1ba7b5c))
9+
10+
### Bug Fixes
11+
- fix: Bump urllib3 to version 2.5.0 and update associated lockfile hashes ([`6cca949`](https://github.com/andyvandaric/avcmt-py/commit/6cca949))
12+
- fix(avcmt): replace os.path with pathlib for path handling and improve file operations ([`7e1ba25`](https://github.com/andyvandaric/avcmt-py/commit/7e1ba25))
13+
14+
### Chores
15+
- Merge branch 'fix/linter-path-errors' ([`812039e`](https://github.com/andyvandaric/avcmt-py/commit/812039e))
16+
- chore(avcmt): improve logging messages in commit workflow ([`8d30dce`](https://github.com/andyvandaric/avcmt-py/commit/8d30dce))
17+
- chore(avcmt): improve logging messages in commit workflow ([`2e4d2a6`](https://github.com/andyvandaric/avcmt-py/commit/2e4d2a6))
18+
- chore(avcmt): improve push process and add user guidance ([`8ccbbae`](https://github.com/andyvandaric/avcmt-py/commit/8ccbbae))
19+
20+
521
## v1.2.0 (2025-06-19)
622

723
### Features

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "avcmt-py"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
description = "avcmt-py: AI-Powered Semantic Release Style Git Commit Automation for Python Project."
99
authors = [ "Andy Vandaric <[email protected]>",]
1010
license = "Apache-2.0"
@@ -13,12 +13,8 @@ include = [ "avcmt/*",]
1313
[[tool.poetry.packages]]
1414
include = "avcmt"
1515

16-
[tool.avcmt.release]
17-
version_path = "pyproject.toml:tool.poetry.version"
18-
changelog_file = "CHANGELOG.md"
19-
branch = "main"
20-
publish_to_pypi = true
21-
repo_url = "https://github.com/andyvandaric/avcmt-py"
16+
[tool.ruff]
17+
target-version = "py310"
2218

2319
[tool.poetry.urls]
2420
Homepage = "https://avcmt.avandaric.live"
@@ -41,8 +37,12 @@ helper = "scripts.helper:main"
4137
preflight = "scripts.preflight:main"
4238
semrel = "scripts.semrel:main"
4339

44-
[tool.ruff]
45-
target-version = "py310"
40+
[tool.avcmt.release]
41+
version_path = "pyproject.toml:tool.poetry.version"
42+
changelog_file = "CHANGELOG.md"
43+
branch = "main"
44+
publish_to_pypi = true
45+
repo_url = "https://github.com/andyvandaric/avcmt-py"
4646

4747
[tool.ruff.lint]
4848
preview = true

0 commit comments

Comments
 (0)