commit-and-tag-version 0.0.2__tar.gz → 0.0.4__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.
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/.github/workflows/publish.yml +8 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/CHANGELOG.md +4 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/PKG-INFO +1 -1
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/pyproject.toml +1 -1
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/.github/workflows/ci.yml +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/.gitignore +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/LICENSE +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/Makefile +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/README.md +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/checkpoint.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/cli.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/commit_parser.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/config.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/defaults.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/format_commit_message.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/git.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/lifecycles/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/lifecycles/bump.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/lifecycles/changelog.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/lifecycles/commit.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/lifecycles/tag.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/models.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/run_lifecycle_script.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/base.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/csproj.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/gradle.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/json_updater.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/maven.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/openapi.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/plain_text.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/python_updater.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/updaters/yaml_updater.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/write_file.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/conftest.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/Project-6.3.1.csproj +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/build-6.3.1.gradle.kts +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/openapi-1.2.3.yaml +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/package-1.0.0.json +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/pom-6.3.1.xml +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/pubspec-6.3.1.yaml +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/pyproject-1.0.0.toml +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/integration/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/integration/test_git_integration.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_bump.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_changelog.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_checkpoint.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_cli.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_commit.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_commit_parser.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_config.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_defaults.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_format_commit_message.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_git.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_main.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_models.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_pyproject_license.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_run_lifecycle_script.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_tag.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/__init__.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_csproj.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_gradle.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_json.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_maven.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_openapi.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_plain_text.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_python_updater.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_resolver.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_yaml.py +0 -0
- {commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_write_file.py +0 -0
|
@@ -68,10 +68,18 @@ jobs:
|
|
|
68
68
|
- name: Push release
|
|
69
69
|
run: git push --follow-tags origin ${{ github.ref_name }}
|
|
70
70
|
|
|
71
|
+
- name: Merge back to develop
|
|
72
|
+
run: |
|
|
73
|
+
git fetch origin develop
|
|
74
|
+
git checkout develop
|
|
75
|
+
git merge --no-ff ${{ github.ref_name }} -m "chore: merge ${{ github.ref_name }} into develop"
|
|
76
|
+
git push origin develop
|
|
77
|
+
|
|
71
78
|
publish:
|
|
72
79
|
needs: release
|
|
73
80
|
runs-on: ubuntu-latest
|
|
74
81
|
permissions:
|
|
82
|
+
contents: write
|
|
75
83
|
id-token: write
|
|
76
84
|
steps:
|
|
77
85
|
- uses: actions/checkout@v4
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.0.4](v0.0.4) (2026-04-08)
|
|
6
|
+
|
|
7
|
+
## [0.0.3](v0.0.3) (2026-02-25)
|
|
8
|
+
|
|
5
9
|
## [0.0.2](v0.0.2) (2026-02-25)
|
|
6
10
|
|
|
7
11
|
### Features
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "commit-and-tag-version"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.4"
|
|
8
8
|
description = "A utility for versioning using semver and CHANGELOG generation powered by Conventional Commits"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/cli.py
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/config.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/defaults.py
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/git.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/src/commit_and_tag_version/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/Project-6.3.1.csproj
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/build-6.3.1.gradle.kts
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/openapi-1.2.3.yaml
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/package-1.0.0.json
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/pubspec-6.3.1.yaml
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/fixtures/pyproject-1.0.0.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_format_commit_message.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_pyproject_license.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_run_lifecycle_script.py
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/__init__.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_csproj.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_gradle.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_json.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_maven.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_openapi.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_plain_text.py
RENAMED
|
File without changes
|
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_resolver.py
RENAMED
|
File without changes
|
{commit_and_tag_version-0.0.2 → commit_and_tag_version-0.0.4}/tests/test_updaters/test_yaml.py
RENAMED
|
File without changes
|
|
File without changes
|