diff --git a/WORKSPACE b/WORKSPACE index 500a71015..a0a4453c8 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -47,7 +47,7 @@ pip_install() git_repository( name = "containerregistry", - commit = "6b250f0bae8cce028df939010ee3118c8f2977ba", + commit = "da03b395ccdc4e149e34fbb540483efce962dc64", remote = "https://github.com/google/containerregistry", ) diff --git a/ftl/CHANGELOG.md b/ftl/CHANGELOG.md index 1bd0dfd58..b585f86a2 100644 --- a/ftl/CHANGELOG.md +++ b/ftl/CHANGELOG.md @@ -1,5 +1,8 @@ # FTL Release Notes +# Version 0.19.0 - 6/27/2020 +* Update container registry client library (previous didn't really change client library version). + # Version 0.18.0 - 6/15/2020 * Update container registry client library. diff --git a/ftl/README.md b/ftl/README.md index c3c3b506c..97666c776 100644 --- a/ftl/README.md +++ b/ftl/README.md @@ -28,11 +28,11 @@ o/my-project/cloudcats-node-app:latest ``` ## Releases -Currently FTL is released in .par format for each supported runtime. The latest release is v0.18.0, changelog [here](https://github.com/GoogleCloudPlatform/runtimes-common/blob/master/ftl/CHANGELOG.md) +Currently FTL is released in .par format for each supported runtime. The latest release is v0.19.0, changelog [here](https://github.com/GoogleCloudPlatform/runtimes-common/blob/master/ftl/CHANGELOG.md) ### node -[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/node/node-v0.18.0/ftl.par) +[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/node/node-v0.19.0/ftl.par) [HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/node/latest/ftl.par) @@ -41,7 +41,7 @@ Specific version (based on git $COMMIT_SHA) ### python -[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/python/python-v0.18.0/ftl.par) +[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/python/python-v0.19.0/ftl.par) [HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/python/latest/ftl.par) @@ -49,7 +49,7 @@ Specific version (based on git $COMMIT_SHA) `https://storage.googleapis.com/gcp-container-tools/ftl/python/$COMMIT_SHA/ftl.par` ### php -[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/php/php-v0.18.0/ftl.par) +[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/php/php-v0.19.0/ftl.par) [HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/php/latest/ftl.par) diff --git a/ftl/common/constants.py b/ftl/common/constants.py index 85747be36..868557a94 100644 --- a/ftl/common/constants.py +++ b/ftl/common/constants.py @@ -21,7 +21,7 @@ THREADS = 32 # ftl version -FTL_VERSION = "v0.18.0" +FTL_VERSION = "v0.19.0" # Google Cloud Builder env options BUILDER_OUTPUT = 'BUILDER_OUTPUT' @@ -75,7 +75,7 @@ PHASE_1_CACHE_MISS = CACHE_MISS + PHASE_1_CACHE_STR PHASE_2_CACHE_MISS = CACHE_MISS + PHASE_2_CACHE_STR -CACHE_KEY_VERSION = 'v0.18.0' +CACHE_KEY_VERSION = 'v0.19.0' FTL_USER_ERROR = "INVALID_ARGUMENT" FTL_INTERNAL_ERROR = "INTERNAL"