From 91621bf4054baecafe29c9d9065451a17e4a5416 Mon Sep 17 00:00:00 2001 From: Jason Han Date: Tue, 23 Jan 2024 14:47:46 -0800 Subject: [PATCH] Update versions for release --- docs/conf.py | 2 +- docs/docker.rst | 2 +- gradle.properties | 4 ++-- openapi/api-docs.yaml | 2 +- openapi/doc-config.json | 2 +- openapi/java-config.json | 2 +- openapi/python-config.json | 2 +- src/main/java/org/openmbee/mms/mmsri/MMSRIApplication.java | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 752ce3f..4d12b20 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ master_doc = 'index' # The full version, including alpha/beta/rc tags -release = '4.0.18' +release = '4.0.19' # -- General configuration --------------------------------------------------- diff --git a/docs/docker.rst b/docs/docker.rst index 8c3528a..45c1d1a 100644 --- a/docs/docker.rst +++ b/docs/docker.rst @@ -49,7 +49,7 @@ Running MMS First, create a container from an MMS image. In the example below, the container is using the host network for simplicity. :: - docker create --name=mms --network="host" -e "SPRING_CONFIG_LOCATION=/mms.properties" openmbee/mms:4.0.18 + docker create --name=mms --network="host" -e "SPRING_CONFIG_LOCATION=/mms.properties" openmbee/mms:4.0.19 Copy properties If using the above command, copy the properties file to the defined spring config location. diff --git a/gradle.properties b/gradle.properties index 99e1479..73b7b9c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -version=4.0.18 +version=4.0.19 group=org.openmbee.mms -mmsVersion=4.0.18 +mmsVersion=4.0.19 springBootVersion=2.7.11 diff --git a/openapi/api-docs.yaml b/openapi/api-docs.yaml index ac8f452..56ecc35 100644 --- a/openapi/api-docs.yaml +++ b/openapi/api-docs.yaml @@ -5,7 +5,7 @@ info: license: name: Apache 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.txt - version: 4.0.18 + version: 4.0.19 contact: name: OpenMBEE url: http://openmbee.org diff --git a/openapi/doc-config.json b/openapi/doc-config.json index 5b6c607..0f954fd 100644 --- a/openapi/doc-config.json +++ b/openapi/doc-config.json @@ -3,5 +3,5 @@ "invokerPackage": "org.openmbee.mms", "groupId": "org.openmbee.mms", "artifactId": "mms-client", - "artifactVersion": "4.0.18" + "artifactVersion": "4.0.19" } diff --git a/openapi/java-config.json b/openapi/java-config.json index b97c50b..bdd4a88 100644 --- a/openapi/java-config.json +++ b/openapi/java-config.json @@ -1,7 +1,7 @@ { "groupId": "org.openmbee.mms", "artifactId": "mms-java-client", - "artifactVersion": "4.0.18", + "artifactVersion": "4.0.19", "artifactUrl": "https://github.com/Open-MBEE/mms", "artifactDescription": "Java OpenAPI Client for MMS", "library": "jersey2", diff --git a/openapi/python-config.json b/openapi/python-config.json index 51cef45..0cef91a 100644 --- a/openapi/python-config.json +++ b/openapi/python-config.json @@ -1,5 +1,5 @@ { "packageName": "mms_python_client", "projectName": "mms-python-client", - "packageVersion": "4.0.18" + "packageVersion": "4.0.19" } diff --git a/src/main/java/org/openmbee/mms/mmsri/MMSRIApplication.java b/src/main/java/org/openmbee/mms/mmsri/MMSRIApplication.java index 95c9405..e8ccfc6 100644 --- a/src/main/java/org/openmbee/mms/mmsri/MMSRIApplication.java +++ b/src/main/java/org/openmbee/mms/mmsri/MMSRIApplication.java @@ -13,7 +13,7 @@ @OpenAPIDefinition( info = @Info( title = "MMS Reference Implementation API", - version = "4.0.18", + version = "4.0.19", description = "Documentation for MMS API", license = @License(name = "Apache 2.0", url = "http://www.apache.org/licenses/LICENSE-2.0.txt") ),