From 60af09d7ff262bf80e91f4e65a8baa90a700fd39 Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Wed, 18 Jul 2018 19:42:36 -0700 Subject: [PATCH] Bump toolkit version (#472) --- Dockerfile | 4 ++-- setup.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01c1b7d1..5d87441d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM ubuntu:16.04 # Release parameters ENV GOOGLEAPIS_HASH 380eba07af6924efbbcd87e442e6ff283e9da787 -ENV GAPIC_GENERATOR_HASH 73713463252169991b5213ff2a0f14ff24c0d36b -ENV ARTMAN_VERSION 0.14.1 +ENV GAPIC_GENERATOR_HASH 0a5f1a2e3442fc7175d419ef27676c41121cd156 +ENV ARTMAN_VERSION 0.14.2 ENV DEBIAN_FRONTEND noninteractive diff --git a/setup.py b/setup.py index 357fc718..30ce28cf 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ # The following line is parsed by CI scripts (see .circleci/config.yml) # and by release.py. Please keep the format. -current_version = '0.14.1' +current_version = '0.14.2' cur_dir = os.path.realpath(os.path.dirname(__file__)) with io.open('%s/requirements.txt' % cur_dir) as requirements_file: @@ -60,5 +60,6 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ] )