Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 3adc8eeb authored by Dorian Turba's avatar Dorian Turba
Browse files

Bump version: 0.4.7 → 1.0.0

parent 824969f8
No related branches found
No related tags found
No related merge requests found
[tool.bumpversion] [tool.bumpversion]
commit = true commit = true
current_version = "0.4.7" current_version = "1.0.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
replace = "{new_version}" replace = "{new_version}"
search = "{current_version}" search = "{current_version}"
......
...@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.0.0] - 2024-08-04
### Added ### Added
* Support of [inputs](https://docs.gitlab.com/ee/ci/yaml/inputs.html) * Support of [inputs](https://docs.gitlab.com/ee/ci/yaml/inputs.html)
* Complete revamp of the documentation
## [0.4.7] - 2024-08-04 ## [0.4.7] - 2024-08-04
......
...@@ -15,7 +15,7 @@ Add the following to your `.gitlab-ci.yml` file: ...@@ -15,7 +15,7 @@ Add the following to your `.gitlab-ci.yml` file:
```yaml ```yaml
include: include:
- component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.7 - component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@1.0.0
``` ```
> ⚠️ On gitlab <16.10, use `$CI_SERVER_FQDN:$CI_SERVER_PORT` instead of `$CI_SERVER_FQDN`. > ⚠️ On gitlab <16.10, use `$CI_SERVER_FQDN:$CI_SERVER_PORT` instead of `$CI_SERVER_FQDN`.
...@@ -31,7 +31,7 @@ For self-hosted instances, you need to import the component as a remote template ...@@ -31,7 +31,7 @@ For self-hosted instances, you need to import the component as a remote template
```yaml ```yaml
include: include:
- remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.7/templates/release-by-changelog.yml' - remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/1.0.0/templates/release-by-changelog.yml'
``` ```
If you want to use semantic version ranges, you need to do a [mirror](https://docs.gitlab.com/ee/user/project/repository/mirror/pull.html) of the repository and rely on the component include. If you want to use semantic version ranges, you need to do a [mirror](https://docs.gitlab.com/ee/user/project/repository/mirror/pull.html) of the repository and rely on the component include.
...@@ -63,7 +63,7 @@ Example of configuration with remote template: ...@@ -63,7 +63,7 @@ Example of configuration with remote template:
```yaml ```yaml
include: include:
- remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/0.4.7/templates/release-by-changelog.yml' - remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/1.0.0/templates/release-by-changelog.yml'
inputs: inputs:
stage: release stage: release
prefix: version- prefix: version-
...@@ -75,7 +75,7 @@ Using variables, you have access to more granular configuration. Example: ...@@ -75,7 +75,7 @@ Using variables, you have access to more granular configuration. Example:
```yaml ```yaml
include: include:
- component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.7 - component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@1.0.0
release-by-changelog: release-by-changelog:
variables: variables:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment