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

Bump version: 0.1.1 → 0.2.0

parent c07a11b1
No related branches found
No related tags found
1 merge request!1Revert "update: kaniko version 1.23.1"
...@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.2.0] - 2024-06-24
### Added
* a new variable to inject kaniko's options to the command: `KANIKO_OPTIONS`
### Changed
* `docker-build` now rely on kaniko to build images
### Removed
* `TAG` and `IMAGE_NAME` variables, `TARGET_IMAGE` now rely directly on
`CI_REGISTRY_IMAGE` and `CI_COMMIT_SHA`
## [0.1.1] - 2024-06-01 ## [0.1.1] - 2024-06-01
### Fixed ### Fixed
......
...@@ -16,7 +16,7 @@ As a remote Template (recommended): ...@@ -16,7 +16,7 @@ As a remote Template (recommended):
```yaml ```yaml
include: include:
- remote: 'https://gitlab.com/swepy/cicd-templates/docker-build/-/raw/0.1.1/templates/docker-build.yml' - remote: 'https://gitlab.com/swepy/cicd-templates/docker-build/-/raw/0.2.0/templates/docker-build.yml'
``` ```
As a local Template (if the template is local to the instance): As a local Template (if the template is local to the instance):
...@@ -24,7 +24,7 @@ As a local Template (if the template is local to the instance): ...@@ -24,7 +24,7 @@ As a local Template (if the template is local to the instance):
```yaml ```yaml
include: include:
- project: 'swepy/cicd-templates/docker-build' - project: 'swepy/cicd-templates/docker-build'
ref: '0.1.1' ref: '0.2.0'
file: 'templates/docker-build.yml' file: 'templates/docker-build.yml'
``` ```
...@@ -33,7 +33,7 @@ component is local to the instance): ...@@ -33,7 +33,7 @@ component is local to the instance):
```yaml ```yaml
include: include:
- component: $CI_SERVER_FQDN/swepy/cicd-templates/docker-build/docker-build@0.1.1 - component: $CI_SERVER_FQDN/swepy/cicd-templates/docker-build/docker-build@0.2.0
``` ```
### Customize job ### Customize job
......
[tool.bumpversion] [tool.bumpversion]
commit = true commit = true
config-file = "pyproject.toml" config-file = "pyproject.toml"
current_version = "0.1.1" current_version = "0.2.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}"
......
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