Skip to content

Commit

Permalink
Merge pull request #712 from kbase/dev-gavin-incoming
Browse files Browse the repository at this point in the history
Bump version for release + update release notes
  • Loading branch information
MrCreosote authored Nov 9, 2023
2 parents 6f44b66 + 769c394 commit c14e3a6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docsource/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 6 additions & 2 deletions docsource/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
2 changes: 1 addition & 1 deletion scripts/workspace_container_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/us/kbase/workspace/test/kbase/JSONRPCLayerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> HELP = list(
"Usage: update_workspace_database_schema [-chosV] <CONFIG_FILE>",
Expand Down
2 changes: 1 addition & 1 deletion src/us/kbase/workspace/version/WorkspaceVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";

}

0 comments on commit c14e3a6

Please sign in to comment.