Skip to content
Snippets Groups Projects
Commit ac3bd84e authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge remote-tracking branch 'origin/2.8.2.3-DEVELOPMENT' into catchup

parents cee3a364 ae24be26
No related branches found
No related tags found
Loading
Pipeline #14351 passed
[bumpversion]
current_version = 2.8.2.3rc1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc)?(?P<rc>\d+)
serialize =
{major}.{minor}.{patch}rc{rc}
{major}.{minor}.{patch}
[bumpversion:glob:apps/cli/utilities/*/*/__init__.py]
[bumpversion:glob:apps/cli/executables/*/*/__init__.py]
[bumpversion:glob:apps/cli/executables/pexable/*/*/__init__.py]
[bumpversion:glob:services/*/*/__init__.py]
[bumpversion:file:testing/testing/_version.py]
# Config for bump-my-version
# Docs: https://callowayproject.github.io/bump-my-version/
# NB: Run with `--ignore-missing-version` flag to ignore PyCAPO's version
[tool.bumpversion]
current_version = "2.8.2.3rc1"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
(?P<patch>0|[1-9]\\d*)
(?:
\\.(?P<smallpatch>0|[1-9]\\d*)
)? # smallpatch section is optional
(?:
(?P<pre_l>[a-zA-Z-]+) # pre-release label
(?P<pre_n>0|[1-9]\\d*) # pre-release version number
)? # pre-release section is optional
"""
serialize = [
"{major}.{minor}.{patch}{pre_l}{pre_n}",
"{major}.{minor}.{patch}.{smallpatch}{pre_l}{pre_n}",
"{major}.{minor}.{patch}.{smallpatch}",
"{major}.{minor}.{patch}",
]
allow_dirty = true
ignore_missing_version = true
[tool.bumpversion.parts.pre_l]
values = ["dev", "rc", "final"]
optional_value = "final"
[tool.bumpversion.parts.pre_n]
first_value = "1"
[[tool.bumpversion.files]]
glob = "apps/cli/executables/pexable/*/pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
glob = "apps/cli/executables/pexable/*/*/__init__.py"
[[tool.bumpversion.files]]
glob = "services/*/pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
glob = "services/*/*/__init__.py"
[[tool.bumpversion.files]]
glob = "shared/*/pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "shared/workspaces/workspaces/__init__.py"
[[tool.bumpversion.files]]
glob = "apps/cli/utilities/*/pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
glob = "apps/cli/utilities/*/*/__init__.py"
[[tool.bumpversion.files]]
filename = "./.gitlab-ci.yml"
search = "RELEASE_VERSION: {current_version}"
replace = "RELEASE_VERSION: {new_version}"
[[tool.bumpversion.files]]
filename = "services/workflow/gitlab-requirements.txt"
[[tool.bumpversion.files]]
filename = "apps/cli/executables/go/spelunker/main.go"
......@@ -97,3 +97,37 @@ build base images:
docker build -t workflow:local -f services/workflow/Dockerfile . --build-arg ENV=local --target dev
docker build -t workflow:local -f services/workflow/Dockerfile . --build-arg ENV=local --target dev
docker build -t workflow:local -f services/workflow/Dockerfile . --build-arg ENV=local --target dev
poetrylockall: poetry-lock-pexes poetry-lock-utilities poetry-lock-shared poetry-lock-services
poetry-lock-pexes:
poetry lock --no-update -C apps/cli/executables/pexable/carta_envoy
poetry lock --no-update -C apps/cli/executables/pexable/casa_envoy
poetry lock --no-update -C apps/cli/executables/pexable/conveyor
poetry lock --no-update -C apps/cli/executables/pexable/data_annotator
poetry lock --no-update -C apps/cli/executables/pexable/deliver
poetry lock --no-update -C apps/cli/executables/pexable/ingest_envoy
poetry lock --no-update -C apps/cli/executables/pexable/mediator
poetry lock --no-update -C apps/cli/executables/pexable/null
poetry lock --no-update -C apps/cli/executables/pexable/productfetcher
poetry lock --no-update -C apps/cli/executables/pexable/update_stage
poetry lock --no-update -C apps/cli/executables/pexable/vela
poetry lock --no-update -C apps/cli/executables/pexable/wf_inspector
poetry lock --no-update -C apps/cli/executables/pexable/ws_annihilator
poetry lock --no-update -C apps/cli/executables/pexable/ws_metrics
poetry-lock-utilities:
poetry lock --no-update -C apps/cli/utilities/aat_wrest
poetry lock --no-update -C apps/cli/utilities/contacts_wrest
poetry lock --no-update -C apps/cli/utilities/core_sampler
poetry lock --no-update -C apps/cli/utilities/wf_monitor
poetry-lock-shared:
poetry lock --no-update -C shared/messaging
poetry lock --no-update -C shared/workspaces
poetry-lock-services:
poetry lock --no-update -C services/capability
poetry lock --no-update -C services/notification
poetry lock --no-update -C services/workflow
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