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
8 changes: 7 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
[bumpversion]
current_version = 1.0.15
current_version = 1.0.16
commit = True
tag = False

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:backend/pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:frontend/package.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.0.16] - 2026-06-15

### Bug Fixes

- **core**: anchor bumpversion search so poetry-core stays fixed (`patch candidate`)

## [1.0.15] - 2026-06-15

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "backend"
version = "1.0.15"
version = "1.0.16"
description = "Github CICD Template Repository."
authors = ["B <g46327wsj1.marbling129@passinbox.com>"]
license = "Other"
Expand Down Expand Up @@ -66,5 +66,5 @@ ensure_newline_before_comments = true
rcfile = ".pylintrc"

[build-system]
requires = ["poetry-core>=1.0.15"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.0.15",
"version": "1.0.16",
"description": "frontend github cicd sample",
"private": "true",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "github-cicd-template"
version = "1.0.15"
version = "1.0.16"
description = "Github CICD Template Repository"
authors = ["B <g46327wsj1.marbling129@passinbox.com>"]
license = "Apache 2.0"
Expand Down
Loading