Skip to content

Commit

Permalink
Minor fix (#1076)
Browse files Browse the repository at this point in the history
* fix(commitzend): fixed commitzen release action

* bump: version 4.0.0 → 4.0.1

* fix(commitzen): test github action

* ci(commitzen): fixed version

* bump: version 4.0.1 → 4.0.2
  • Loading branch information
glaubervila authored Sep 3, 2024
1 parent 2ffbc29 commit 1b15dac
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
1 change: 1 addition & 0 deletions .VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "4.0.2"
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cz_conventional_commits"
tag_format = "$major.$minor.$patch$prerelease"
version_scheme = "semver"
version = "4.0.0"
version = "4.0.2"
update_changelog_on_bump = true
version_files = [
"backend/__version__.py",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
changelog_increment_filename: CHANGELOG.md
changelog_increment_filename: body.md
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: 'CHANGELOG.md'
body_path: 'body.md'
tag_name: ${{ env.REVISION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 4.0.2 (2024-09-03)

### Fix

- **commitzen**: test github action

## 4.0.1 (2024-09-03)

### Fix

- **commitzend**: fixed commitzen release action

## 4.0.0 (2024-09-03)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion backend/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.0"
__version__ = "4.0.2"
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
version = "4.0.0"
version = "4.0.2"

[tool.isort]
profile = "black"
Expand Down
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": "4.0.0",
"version": "4.0.2",
"private": true,
"dependencies": {
"@date-io/date-fns": "2.16.0",
Expand Down
2 changes: 1 addition & 1 deletion predict_occultation/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.0"
__version__ = "4.0.2"

0 comments on commit 1b15dac

Please sign in to comment.