Skip to content

Commit

Permalink
add release notes & a version bump to 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangs18 committed Feb 23, 2024
1 parent 11521dc commit 58fb9e5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 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'
release = '0.14.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 8 additions & 0 deletions docsource/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Workspace service release notes
===============================

VERSION: 0.14.3 (Released 2/22/2024)
------------------------------------

UPDATES:

* The MongoDB clients have been updated to the most recent version and the service tested against Mongo 7.


VERSION: 0.14.2 (Released 11/9/2023)
------------------------------------

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"
WORKSPACE_VERSION = "0.14.3"

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";
private static final String VER = "0.14.3";

@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";
private static final String VERSION = "0.14.3";

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";
public static final String VERSION = "0.14.3";

}

0 comments on commit 58fb9e5

Please sign in to comment.