diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 159b675b..48484e28 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,11 +1,13 @@ # execution_engine2 (ee2) release notes ========================================= -## 0.0.12 +## 0.0.13 +* Bump version in impl file + +## 0.0.12 * Forcing black to 22.1.0 to make sure that GHA doesn't suddenly fail * Prevent jobs that never ran from submitting job execution stats - ## 0.0.11 * Add ability for `kbase` user to contact condor via token diff --git a/kbase.yml b/kbase.yml index 42615d27..a7d366a8 100644 --- a/kbase.yml +++ b/kbase.yml @@ -8,7 +8,7 @@ service-language: python module-version: - 0.0.8 + 0.0.13 owners: [bsadkhin, tgu2, wjriehl, gaprice] diff --git a/lib/execution_engine2/execution_engine2Impl.py b/lib/execution_engine2/execution_engine2Impl.py index eed19ed7..b56dae16 100644 --- a/lib/execution_engine2/execution_engine2Impl.py +++ b/lib/execution_engine2/execution_engine2Impl.py @@ -28,9 +28,10 @@ class execution_engine2: # state. A method could easily clobber the state set by another while # the latter method is running. ######################################### noqa - VERSION = "0.0.8" - GIT_URL = "" - GIT_COMMIT_HASH = "" + + VERSION = "0.0.13" + GIT_URL = "git@github.com:kbase/execution_engine2.git" + GIT_COMMIT_HASH = "3e9f80f38458d7b383d2e028f15213b0fcb1a77e" # BEGIN_CLASS_HEADER MONGO_COLLECTION = "jobs"