From 80aebc46c675d751b8463e74fc29b4dbca7d8352 Mon Sep 17 00:00:00 2001 From: JamesJeffryes Date: Tue, 4 Dec 2018 10:49:56 -0600 Subject: [PATCH] Update release notes and version --- RELEASE_NOTES.txt | 11 +++++++++++ src/java/us/kbase/mobu/ModuleBuilder.java | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index 40808007..ff1e4f9b 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -6,6 +6,17 @@ platform. Modules include all code, specification files, and documentation needed to define and run a set of methods in the KBase Narrative interface. +VERSION: 1.2.1 (Released 12/04/2018) +------------------------------------ +CHANGES: +- Now example modules will also be initialized with a generic KIDL spec rather than one tailored to the example. +- Python implementation uses "logging" modules and example tests are updated to be more pythonic (no getters) + +BUGFIXES: +- Module specific clients now correctly call baseclient.py for async jobs. This ensures that retry logic is used. +- Replace "/run" with "/var/run" in generated kb-sdk.sh script because "/run" is missing on some docker installs. +- KBaseReports and AssemblyUtils clients should be installed as async not core + VERSION: 1.2.0 (Released 11/14/2018) ------------------------------------ NEW FEATURES: diff --git a/src/java/us/kbase/mobu/ModuleBuilder.java b/src/java/us/kbase/mobu/ModuleBuilder.java index 9d6a0e06..d8d618d0 100644 --- a/src/java/us/kbase/mobu/ModuleBuilder.java +++ b/src/java/us/kbase/mobu/ModuleBuilder.java @@ -49,7 +49,7 @@ public class ModuleBuilder { public static final String GLOBAL_SDK_HOME_ENV_VAR = "KB_SDK_HOME"; public static final String DEFAULT_METHOD_STORE_URL = "https://appdev.kbase.us/services/narrative_method_store/rpc"; - public static final String VERSION = "1.2.0"; + public static final String VERSION = "1.2.1"; public static void main(String[] args) throws Exception {