File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed
swift_browser_ui_frontend Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ wasm-test:
86
86
- cd swift_browser_ui_frontend/wasm
87
87
- ceedling
88
88
89
+ # This job creates the automated releases
89
90
release-job :
90
91
extends : .automated-release
91
92
release :
@@ -105,6 +106,18 @@ release-job:
105
106
url : https://${ARTIFACTORY_SERVER}/sds/swift-sharing-request:${RELEASE_VERSION}
106
107
link_type : image
107
108
109
+ # This is a manual dry-run for developers to run in the merge request
110
+ update-versions-dryrun :
111
+ extends : .update-versions-dryrun
112
+ variables :
113
+ UPDATE_VERSION_FILES_LIST : " docs/_static/openapi.yaml;docs/source/conf.py;swift_browser_ui/__init__.py;swift_browser_ui_frontend/package.json"
114
+
115
+ # This job updates the versions
116
+ update-versions :
117
+ extends : .update-versions
118
+ variables :
119
+ UPDATE_VERSION_FILES_LIST : " docs/_static/openapi.yaml;docs/source/conf.py;swift_browser_ui/__init__.py;swift_browser_ui_frontend/package.json"
120
+
108
121
deploy :
109
122
rules :
110
123
# until this is https://gitlab.com/groups/gitlab-org/-/epics/4529 is merged
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ openapi: "3.0.3"
2
2
info :
3
3
title : " Swift Browser UI"
4
4
description : " API for querying Openstack Swift as well as working with Openstack Swift ACLs in order to enable sharing action."
5
- version : " 2025.2 .0"
5
+ version : " 2025.4 .0"
6
6
license :
7
7
name : MIT
8
8
tags :
Original file line number Diff line number Diff line change 28
28
author = "CSC Developers"
29
29
30
30
# The full version, including alpha/beta/rc tags
31
- version = release = "2025.2 .0"
31
+ version = release = "2025.4 .0"
32
32
33
33
34
34
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 5
5
"""
6
6
7
7
__name__ = "swift_browser_ui"
8
- __version__ = "2025.2 .0"
8
+ __version__ = "2025.4 .0"
9
9
__author__ = "CSC Developers"
10
10
__license__ = "MIT License"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " swift_browser_ui_frontend_npm" ,
3
- "version" : " 2025.2 .0" ,
3
+ "version" : " 2025.4 .0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"serve" : " ./build_wasm.sh && vite serve --mode development" ,
You can’t perform that action at this time.
0 commit comments