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 3d3cf737 authored by Dorian Turba's avatar Dorian Turba
Browse files

Merge branch 'trunk'

parents 71ab01a9 ffa54979
No related branches found
No related tags found
No related merge requests found
Pipeline #34481 passed
...@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.4.1] - 2024-05-12
* More documentation
## [0.4.0] - 2024-05-12 ## [0.4.0] - 2024-05-12
* More documentation * More documentation
......
...@@ -15,21 +15,28 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ...@@ -15,21 +15,28 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Add the following to your `.gitlab-ci.yml` file. Add the following to your `.gitlab-ci.yml` file.
As a Template: As a remote Template (recommended):
```yaml
include:
- remote: 'https://gitlab.com/swepy/cicd-templates/release-by-changelog/-/raw/release-by-changelog@0.4.1/release-by-changelog.yml'
```
As a local Template (if the template is local to the instance):
```yaml ```yaml
include: include:
- project: 'swepy/cicd-templates/release-by-changelog' - project: 'swepy/cicd-templates/release-by-changelog'
ref: '0.4.0' ref: '0.4.1'
file: 'templates/release-by-changelog.yml' file: 'templates/release-by-changelog.yml'
``` ```
As a Component: As a Component ([beta](https://gitlab.com/gitlab-org/gitlab/-/issues/407556) and if the
component is local to the instance):
```yaml ```yaml
# As a Component
include: include:
- component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.0 - component: $CI_SERVER_FQDN/swepy/cicd-templates/release-by-changelog/release-by-changelog@0.4.1
``` ```
### Customize job ### Customize job
......
[tool.bumpversion] [tool.bumpversion]
commit = true commit = true
config-file = "pyproject.toml" config-file = "pyproject.toml"
current_version = "0.4.0" current_version = "0.4.1"
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}"
......
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