From 6399a1dfeb52a6c5bc155da1845202b94e064834 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 14:58:53 +0100 Subject: [PATCH 1/9] Update regexes for gradle and python files --- .../python/ddadevops/domain/build_file.py | 35 +++++++------------ 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/src/main/python/ddadevops/domain/build_file.py b/src/main/python/ddadevops/domain/build_file.py index c159ca6..76cb044 100644 --- a/src/main/python/ddadevops/domain/build_file.py +++ b/src/main/python/ddadevops/domain/build_file.py @@ -48,11 +48,11 @@ class BuildFile(Validateable): def __get_file_type_regex_str(self, file_type: BuildFileType): match file_type: case BuildFileType.JAVA_GRADLE: - return "[0-9]*\\.[0-9]*\\.[0-9]*(-SNAPSHOT)?" + return r'(?Pversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' case BuildFileType.PYTHON: - return "[0-9]*\\.[0-9]*\\.[0-9]*(-SNAPSHOT)?(-dev)?[0-9]*" + return r'(?Pversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT|-dev\d*)?)\"' case BuildFileType.JAVA_CLOJURE: - return r'(?P\(defproject\s(\S)*\s)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' + return r'(?P\(defproject\s(\S)*\s)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' case _: return "" @@ -63,22 +63,9 @@ class BuildFile(Validateable): case BuildFileType.JS: version_str = json.loads(self.content)["version"] case BuildFileType.JAVA_GRADLE: - # TODO: '\nversion = ' will not parse all ?! - version_line = re.search("\nversion = .*", self.content) - version_line_group = version_line.group() - version_string = re.search( - self.__get_file_type_regex_str(build_file_type), version_line_group - ) - version_str = version_string.group() + version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") case BuildFileType.PYTHON: - # TODO: '\nversion = ' will not parse all ?! - version_line = re.search("\nversion = .*\n", self.content) - version_line_group = version_line.group() - version_string = re.search( - self.__get_file_type_regex_str(build_file_type), - version_line_group, - ) - version_str = version_string.group() + version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") case BuildFileType.JAVA_CLOJURE: version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") except: @@ -103,22 +90,24 @@ class BuildFile(Validateable): self.content = json.dumps(json_data, indent=4) case BuildFileType.JAVA_GRADLE: substitute = re.sub( - f'\nversion = "{self.__get_file_type_regex_str(build_file_type)}"', - f'\nversion = "{new_version.to_string()}"', + self.__get_file_type_regex_str(build_file_type), + fr'\g"{new_version.to_string()}"', self.content, + 1, ) self.content = substitute case BuildFileType.PYTHON: substitute = re.sub( - f'\nversion = "{self.__get_file_type_regex_str(build_file_type)}"', - f'\nversion = "{new_version.to_string()}"', + self.__get_file_type_regex_str(build_file_type), + fr'\g"{new_version.to_string()}"', self.content, + 1, ) self.content = substitute case BuildFileType.JAVA_CLOJURE: substitute = re.sub( self.__get_file_type_regex_str(build_file_type), - fr'\g"{new_version.to_string()}"', + fr'\g"{new_version.to_string()}"', self.content, 1, ) From 07cf837ac6e2f0b6617eab3967779f080c9ddea7 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 15:00:33 +0100 Subject: [PATCH 2/9] Simplify set/get version functions --- .../python/ddadevops/domain/build_file.py | 24 ++----------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/src/main/python/ddadevops/domain/build_file.py b/src/main/python/ddadevops/domain/build_file.py index 76cb044..c1dbbf5 100644 --- a/src/main/python/ddadevops/domain/build_file.py +++ b/src/main/python/ddadevops/domain/build_file.py @@ -62,11 +62,7 @@ class BuildFile(Validateable): match build_file_type: case BuildFileType.JS: version_str = json.loads(self.content)["version"] - case BuildFileType.JAVA_GRADLE: - version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") - case BuildFileType.PYTHON: - version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") - case BuildFileType.JAVA_CLOJURE: + case BuildFileType.JAVA_GRADLE | BuildFileType.PYTHON | BuildFileType.JAVA_CLOJURE: version_str = re.search(self.__get_file_type_regex_str(build_file_type), self.content).group("version") except: raise RuntimeError(f"Version not found in file {self.file_path}") @@ -88,23 +84,7 @@ class BuildFile(Validateable): json_data = json.loads(self.content) json_data["version"] = new_version.to_string() self.content = json.dumps(json_data, indent=4) - case BuildFileType.JAVA_GRADLE: - substitute = re.sub( - self.__get_file_type_regex_str(build_file_type), - fr'\g"{new_version.to_string()}"', - self.content, - 1, - ) - self.content = substitute - case BuildFileType.PYTHON: - substitute = re.sub( - self.__get_file_type_regex_str(build_file_type), - fr'\g"{new_version.to_string()}"', - self.content, - 1, - ) - self.content = substitute - case BuildFileType.JAVA_CLOJURE: + case BuildFileType.JAVA_GRADLE | BuildFileType.PYTHON | BuildFileType.JAVA_CLOJURE: substitute = re.sub( self.__get_file_type_regex_str(build_file_type), fr'\g"{new_version.to_string()}"', From 7375ba16cc0750c7f3b0caed1fcffd5336b273a1 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 15:01:00 +0100 Subject: [PATCH 3/9] release: 4.9.2 --- build.py | 2 +- infrastructure/clj-cljs/build.py | 2 +- infrastructure/clj/build.py | 2 +- infrastructure/ddadevops/build.py | 2 +- infrastructure/dind/build.py | 2 +- infrastructure/kotlin/build.py | 2 +- infrastructure/python/build.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.py b/build.py index 874d668..b450075 100644 --- a/build.py +++ b/build.py @@ -33,7 +33,7 @@ default_task = "dev" name = "ddadevops" MODULE = "not-used" PROJECT_ROOT_PATH = "." -version = "4.9.2-dev" +version = "4.9.2" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] diff --git a/infrastructure/clj-cljs/build.py b/infrastructure/clj-cljs/build.py index 6a4609a..5b3a56c 100644 --- a/infrastructure/clj-cljs/build.py +++ b/infrastructure/clj-cljs/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj-cljs" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init def initialize(project): diff --git a/infrastructure/clj/build.py b/infrastructure/clj/build.py index 9dff5e1..d260bcf 100644 --- a/infrastructure/clj/build.py +++ b/infrastructure/clj/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init def initialize(project): diff --git a/infrastructure/ddadevops/build.py b/infrastructure/ddadevops/build.py index 62b22f4..4027e96 100644 --- a/infrastructure/ddadevops/build.py +++ b/infrastructure/ddadevops/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "ddadevops" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init diff --git a/infrastructure/dind/build.py b/infrastructure/dind/build.py index a481601..90e0aa0 100644 --- a/infrastructure/dind/build.py +++ b/infrastructure/dind/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "dind" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init diff --git a/infrastructure/kotlin/build.py b/infrastructure/kotlin/build.py index 25df4e9..64eb48f 100644 --- a/infrastructure/kotlin/build.py +++ b/infrastructure/kotlin/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "kotlin" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init diff --git a/infrastructure/python/build.py b/infrastructure/python/build.py index 0327217..1b02c05 100644 --- a/infrastructure/python/build.py +++ b/infrastructure/python/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "python" PROJECT_ROOT_PATH = "../.." -version = "4.9.2-dev" +version = "4.9.2" @init From 97978e99509786252c77e3c75961d24728e4e7e3 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 15:01:00 +0100 Subject: [PATCH 4/9] bump version to: 4.9.3-dev --- build.py | 2 +- infrastructure/clj-cljs/build.py | 2 +- infrastructure/clj/build.py | 2 +- infrastructure/ddadevops/build.py | 2 +- infrastructure/dind/build.py | 2 +- infrastructure/kotlin/build.py | 2 +- infrastructure/python/build.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.py b/build.py index b450075..31f9490 100644 --- a/build.py +++ b/build.py @@ -33,7 +33,7 @@ default_task = "dev" name = "ddadevops" MODULE = "not-used" PROJECT_ROOT_PATH = "." -version = "4.9.2" +version = "4.9.3-dev" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] diff --git a/infrastructure/clj-cljs/build.py b/infrastructure/clj-cljs/build.py index 5b3a56c..b2fc6c3 100644 --- a/infrastructure/clj-cljs/build.py +++ b/infrastructure/clj-cljs/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj-cljs" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init def initialize(project): diff --git a/infrastructure/clj/build.py b/infrastructure/clj/build.py index d260bcf..24cefc7 100644 --- a/infrastructure/clj/build.py +++ b/infrastructure/clj/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init def initialize(project): diff --git a/infrastructure/ddadevops/build.py b/infrastructure/ddadevops/build.py index 4027e96..2518ca5 100644 --- a/infrastructure/ddadevops/build.py +++ b/infrastructure/ddadevops/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "ddadevops" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init diff --git a/infrastructure/dind/build.py b/infrastructure/dind/build.py index 90e0aa0..afad27b 100644 --- a/infrastructure/dind/build.py +++ b/infrastructure/dind/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "dind" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init diff --git a/infrastructure/kotlin/build.py b/infrastructure/kotlin/build.py index 64eb48f..7e13e7d 100644 --- a/infrastructure/kotlin/build.py +++ b/infrastructure/kotlin/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "kotlin" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init diff --git a/infrastructure/python/build.py b/infrastructure/python/build.py index 1b02c05..03531b8 100644 --- a/infrastructure/python/build.py +++ b/infrastructure/python/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "python" PROJECT_ROOT_PATH = "../.." -version = "4.9.2" +version = "4.9.3-dev" @init From 215a9bf0fe777a6a5517f9e3efa642db4dbf7e14 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 15:04:36 +0100 Subject: [PATCH 5/9] Add regression test for malformed version in clj --- src/test/python/domain/test_build_file.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/test/python/domain/test_build_file.py b/src/test/python/domain/test_build_file.py index 7e199ba..58fbea7 100644 --- a/src/test/python/domain/test_build_file.py +++ b/src/test/python/domain/test_build_file.py @@ -182,3 +182,17 @@ def test_should_parse_and_set_version_for_clj(): '\n(defproject org.domaindrivenarchitecture/c4k-jira "2.0.0"\n:dependencies [[org.clojure/clojure "1.11.0"]]\n)\n ' == sut.content ) + +def test_should_throw_for_clj_wrong_version(): + sut = BuildFile( + Path("./project.clj"), + """ +(defproject org.domaindrivenarchitecture/c4k-jira "1.1.5-Snapshot" + :description "jira c4k-installation package" + :url "https://domaindrivenarchitecture.org" +) +""", + ) + + with pytest.raises(RuntimeError): + sut.get_version() \ No newline at end of file From 5053b79ad456dff01165410cc02ebfc80aca955d Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 24 Nov 2023 22:28:39 +0100 Subject: [PATCH 6/9] Make version regex for python and gradle more concrete Check that "version" is the start of the string to avoid changing cases like "kotlin_version = ..." --- .../python/ddadevops/domain/build_file.py | 4 +-- src/test/python/domain/test_build_file.py | 28 ++++++++++++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/main/python/ddadevops/domain/build_file.py b/src/main/python/ddadevops/domain/build_file.py index c1dbbf5..3b41577 100644 --- a/src/main/python/ddadevops/domain/build_file.py +++ b/src/main/python/ddadevops/domain/build_file.py @@ -48,9 +48,9 @@ class BuildFile(Validateable): def __get_file_type_regex_str(self, file_type: BuildFileType): match file_type: case BuildFileType.JAVA_GRADLE: - return r'(?Pversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' + return r'(?P\bversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' case BuildFileType.PYTHON: - return r'(?Pversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT|-dev\d*)?)\"' + return r'(?P\bversion\s?=\s?)\"(?P\d*\.\d*\.\d*(-SNAPSHOT|-dev\d*)?)\"' case BuildFileType.JAVA_CLOJURE: return r'(?P\(defproject\s(\S)*\s)\"(?P\d*\.\d*\.\d*(-SNAPSHOT)?)\"' case _: diff --git a/src/test/python/domain/test_build_file.py b/src/test/python/domain/test_build_file.py index 58fbea7..1bee1e0 100644 --- a/src/test/python/domain/test_build_file.py +++ b/src/test/python/domain/test_build_file.py @@ -195,4 +195,30 @@ def test_should_throw_for_clj_wrong_version(): ) with pytest.raises(RuntimeError): - sut.get_version() \ No newline at end of file + sut.get_version() + +def test_should_ignore_first_version_for_py(): + sut = BuildFile( + Path("./build.py"), + """ +from pybuilder.core import init, use_plugin, Author +use_plugin("python.core") + +name = "ddadevops" +project_version = "0.0.2-dev1" +version = "1.1.5-dev12" +summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" +""", + ) + assert sut.get_version() == Version.from_str("1.1.5-dev12", "dev") + +def test_should_ignore_first_version_for_gradle(): + sut = BuildFile( + Path("./build.gradle"), + """ +kotlin_version = "3.3.3" +version = "1.1.5-SNAPSHOT" + +""", + ) + assert sut.get_version() == Version.from_str("1.1.5-SNAPSHOT", "SNAPSHOT") \ No newline at end of file From 3e49e31e668d06a25a54e4051f040a6ea007213e Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 1 Dec 2023 11:09:39 +0100 Subject: [PATCH 7/9] Add kotlin image to ci --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5cbeae..2bed781 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -80,3 +80,10 @@ ddadevops-image-publish: stage: image script: - cd infrastructure/ddadevops && pyb image publish + +kotlin-image-publish: + <<: *img + <<: *tag_only + stage: image + script: + - cd infrastructure/kotlin && pyb image publish From 4d8961557ccff83ec352a5517af42271cdb69a04 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 1 Dec 2023 11:10:27 +0100 Subject: [PATCH 8/9] release: 4.9.3 --- build.py | 2 +- infrastructure/clj-cljs/build.py | 2 +- infrastructure/clj/build.py | 2 +- infrastructure/ddadevops/build.py | 2 +- infrastructure/dind/build.py | 2 +- infrastructure/kotlin/build.py | 2 +- infrastructure/python/build.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.py b/build.py index 31f9490..14b0eb3 100644 --- a/build.py +++ b/build.py @@ -33,7 +33,7 @@ default_task = "dev" name = "ddadevops" MODULE = "not-used" PROJECT_ROOT_PATH = "." -version = "4.9.3-dev" +version = "4.9.3" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] diff --git a/infrastructure/clj-cljs/build.py b/infrastructure/clj-cljs/build.py index b2fc6c3..c7bf2ec 100644 --- a/infrastructure/clj-cljs/build.py +++ b/infrastructure/clj-cljs/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj-cljs" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init def initialize(project): diff --git a/infrastructure/clj/build.py b/infrastructure/clj/build.py index 24cefc7..7d6393d 100644 --- a/infrastructure/clj/build.py +++ b/infrastructure/clj/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init def initialize(project): diff --git a/infrastructure/ddadevops/build.py b/infrastructure/ddadevops/build.py index 2518ca5..7cdbf08 100644 --- a/infrastructure/ddadevops/build.py +++ b/infrastructure/ddadevops/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "ddadevops" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init diff --git a/infrastructure/dind/build.py b/infrastructure/dind/build.py index afad27b..fd16266 100644 --- a/infrastructure/dind/build.py +++ b/infrastructure/dind/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "dind" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init diff --git a/infrastructure/kotlin/build.py b/infrastructure/kotlin/build.py index 7e13e7d..edb255a 100644 --- a/infrastructure/kotlin/build.py +++ b/infrastructure/kotlin/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "kotlin" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init diff --git a/infrastructure/python/build.py b/infrastructure/python/build.py index 03531b8..0f1f22d 100644 --- a/infrastructure/python/build.py +++ b/infrastructure/python/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "python" PROJECT_ROOT_PATH = "../.." -version = "4.9.3-dev" +version = "4.9.3" @init From 29d439e82a0a5ef12520f0d20e0e19d58dec8b6a Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 1 Dec 2023 11:10:27 +0100 Subject: [PATCH 9/9] bump version to: 4.9.4-dev --- build.py | 2 +- infrastructure/clj-cljs/build.py | 2 +- infrastructure/clj/build.py | 2 +- infrastructure/ddadevops/build.py | 2 +- infrastructure/dind/build.py | 2 +- infrastructure/kotlin/build.py | 2 +- infrastructure/python/build.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.py b/build.py index 14b0eb3..672dcbd 100644 --- a/build.py +++ b/build.py @@ -33,7 +33,7 @@ default_task = "dev" name = "ddadevops" MODULE = "not-used" PROJECT_ROOT_PATH = "." -version = "4.9.3" +version = "4.9.4-dev" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] diff --git a/infrastructure/clj-cljs/build.py b/infrastructure/clj-cljs/build.py index c7bf2ec..43499e4 100644 --- a/infrastructure/clj-cljs/build.py +++ b/infrastructure/clj-cljs/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj-cljs" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init def initialize(project): diff --git a/infrastructure/clj/build.py b/infrastructure/clj/build.py index 7d6393d..7824356 100644 --- a/infrastructure/clj/build.py +++ b/infrastructure/clj/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "clj" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init def initialize(project): diff --git a/infrastructure/ddadevops/build.py b/infrastructure/ddadevops/build.py index 7cdbf08..92a2937 100644 --- a/infrastructure/ddadevops/build.py +++ b/infrastructure/ddadevops/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "ddadevops" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init diff --git a/infrastructure/dind/build.py b/infrastructure/dind/build.py index fd16266..c7c3292 100644 --- a/infrastructure/dind/build.py +++ b/infrastructure/dind/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "dind" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init diff --git a/infrastructure/kotlin/build.py b/infrastructure/kotlin/build.py index edb255a..5af0c91 100644 --- a/infrastructure/kotlin/build.py +++ b/infrastructure/kotlin/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "kotlin" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init diff --git a/infrastructure/python/build.py b/infrastructure/python/build.py index 0f1f22d..23d7303 100644 --- a/infrastructure/python/build.py +++ b/infrastructure/python/build.py @@ -6,7 +6,7 @@ from ddadevops import * name = "ddadevops" MODULE = "python" PROJECT_ROOT_PATH = "../.." -version = "4.9.3" +version = "4.9.4-dev" @init