From 873a10766ea700d1f53aec41a9e8bd4c53022163 Mon Sep 17 00:00:00 2001 From: Gavin Date: Thu, 9 Nov 2023 13:38:12 -0800 Subject: [PATCH] Bump version for release + update release notes --- docsource/conf.py | 2 +- docsource/releasenotes.rst | 8 ++++++-- scripts/workspace_container_test.py | 2 +- src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java | 2 +- .../kbase/workspace/test/kbase/SchemaUpdaterCLITest.java | 2 +- src/us/kbase/workspace/version/WorkspaceVersion.java | 2 +- 6 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docsource/conf.py b/docsource/conf.py index c4ef3f1c..d2076633 100644 --- a/docsource/conf.py +++ b/docsource/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '0.14' # The full version, including alpha/beta/rc tags. -release = '0.14.2-dev1' +release = '0.14.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docsource/releasenotes.rst b/docsource/releasenotes.rst index a71c105d..5dc51ea7 100644 --- a/docsource/releasenotes.rst +++ b/docsource/releasenotes.rst @@ -3,12 +3,16 @@ Workspace service release notes =============================== -VERSION: 0.14.2 (Released TBD) ------------------------------- +VERSION: 0.14.2 (Released 11/9/2023) +------------------------------------ UPDATES: * Added the ``alter_admin_object_metdata`` method. +* Added the ``get_admin_role`` method. +* Added the ``infostruct`` toggle to ``get_objects2`` and ``get_object_info3`` methods that + controls returning the object information as a struct or a tuple. The struct also contains + additional information. * Update to using Java 11 for building, running, and testing the workspace. diff --git a/scripts/workspace_container_test.py b/scripts/workspace_container_test.py index 1a891996..fb3d53be 100644 --- a/scripts/workspace_container_test.py +++ b/scripts/workspace_container_test.py @@ -16,7 +16,7 @@ """ -WORKSPACE_VERSION = "0.14.2-dev1" +WORKSPACE_VERSION = "0.14.2" AUTH_URL = "http://localhost:8080" WS_URL = "http://localhost:7058" diff --git a/src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java b/src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java index 70b510ac..b2226d64 100644 --- a/src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java +++ b/src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java @@ -101,7 +101,7 @@ */ public class JSONRPCLayerTest extends JSONRPCLayerTester { - private static final String VER = "0.14.2-dev1"; + private static final String VER = "0.14.2"; @Test public void ver() throws Exception { diff --git a/src/us/kbase/workspace/test/kbase/SchemaUpdaterCLITest.java b/src/us/kbase/workspace/test/kbase/SchemaUpdaterCLITest.java index 76b493fe..ea402a5e 100644 --- a/src/us/kbase/workspace/test/kbase/SchemaUpdaterCLITest.java +++ b/src/us/kbase/workspace/test/kbase/SchemaUpdaterCLITest.java @@ -41,7 +41,7 @@ public class SchemaUpdaterCLITest { - private static final String VERSION = "0.14.2-dev1"; + private static final String VERSION = "0.14.2"; private static final List HELP = list( "Usage: update_workspace_database_schema [-chosV] ", diff --git a/src/us/kbase/workspace/version/WorkspaceVersion.java b/src/us/kbase/workspace/version/WorkspaceVersion.java index 5f520545..f21f4096 100644 --- a/src/us/kbase/workspace/version/WorkspaceVersion.java +++ b/src/us/kbase/workspace/version/WorkspaceVersion.java @@ -6,6 +6,6 @@ public class WorkspaceVersion { private WorkspaceVersion() {}; /** The version. */ - public static final String VERSION = "0.14.2-dev1"; + public static final String VERSION = "0.14.2"; }