diff --git a/CHANGELOG.md b/CHANGELOG.md index bb288b8114d2a54b8a146e0d62a04c2deea45b5a..c2c6782aa147e0965634d18954b5ad0c60947421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2] - 2024-06-10 + +### Fixed + +* Include remote template example + ## [0.4.1] - 2024-05-12 * More documentation diff --git a/README.md b/README.md index 8ce263455c3c6d0688623298b864b176d7514d19..6b7ff4147bcc1f644ace7b7186c295b22f29e2f8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ As a remote Template (recommended): ```yaml include: - - remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.1/templates/release-by-changelog.yml' + - remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.2/templates/release-by-changelog.yml' ``` As a local Template (if the template is local to the instance): @@ -27,7 +27,7 @@ As a local Template (if the template is local to the instance): ```yaml include: - project: 'swepy/cicd-templates/release-by-changelog' - ref: '0.4.1' + ref: '0.4.2' file: 'templates/release-by-changelog.yml' ``` @@ -36,7 +36,7 @@ component is local to the instance): ```yaml include: - - component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.1 + - component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.2 ``` ### Customize job diff --git a/pyproject.toml b/pyproject.toml index df6f5b567b1001e478cc8e82f486e6398b185f1c..2263ca2eaac0a97ce6a8b4a660658aed92ada577 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.bumpversion] commit = true config-file = "pyproject.toml" -current_version = "0.4.1" +current_version = "0.4.2" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" replace = "{new_version}" search = "{current_version}"