Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for release + update release notes #711

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";

}