From bf42fc45607b97bc040cbdacbde8ff5a4b6ad29b Mon Sep 17 00:00:00 2001
From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>
Date: Fri, 18 Oct 2019 09:41:39 -0700
Subject: [PATCH 1/2] fix: define version once in setup.py (#158)

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 32d47b430..c76e98a0e 100644
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@
 
 setuptools.setup(
     name="dialogflow",
-    version="0.7.0",
+    version=version,
     author="Google LLC",
     author_email="googleapis-packages@google.com",
     license="Apache 2.0",

From 94e025232ab10459a844a853e75142a666581668 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
 <55107282+release-please[bot]@users.noreply.github.com>
Date: Fri, 18 Oct 2019 10:48:16 -0700
Subject: [PATCH 2/2] chore: release 0.7.2 (#160)

---
 CHANGELOG.md | 7 +++++++
 setup.py     | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 800decf73..3216a5009 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,13 @@
 
 [1]: https://pypi.org/project/dialogflow/#history
 
+### [0.7.2](https://www.github.com/googleapis/dialogflow-python-client-v2/compare/v0.7.1...v0.7.2) (2019-10-18)
+
+
+### Bug Fixes
+
+* define version once in setup.py ([#158](https://www.github.com/googleapis/dialogflow-python-client-v2/issues/158)) ([bf42fc4](https://www.github.com/googleapis/dialogflow-python-client-v2/commit/bf42fc45607b97bc040cbdacbde8ff5a4b6ad29b))
+
 ### [0.7.1](https://www.github.com/googleapis/dialogflow-python-client-v2/compare/v0.7.0...v0.7.1) (2019-10-17)
 
 
diff --git a/setup.py b/setup.py
index c76e98a0e..d3e2df2e1 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@
 
 name = "dialogflow"
 description = "Client library for the Dialogflow API"
-version = "0.7.1"
+version = "0.7.2"
 release_status = "Development Status :: 4 - Beta"
 dependencies = ["google-api-core[grpc] >= 1.14.0, < 2.0.0dev"]