From ac90746eb5f2d50bcd48a4768572fc6de0cea2bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Llor=C3=A0?= Date: Sat, 2 Sep 2017 22:13:43 -0700 Subject: [PATCH] Promote new stable 0.9.0 --- bql/version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bql/version/version.go b/bql/version/version.go index daf50c3a..f76f30de 100644 --- a/bql/version/version.go +++ b/bql/version/version.go @@ -18,11 +18,11 @@ var ( // Major is the current major version of master branch. Major = 0 // Minor is the current minor version of master branch. - Minor = 8 + Minor = 9 // Patch is the current patched version of the master branch. - Patch = 1 + Patch = 0 // Release is the current release level of the master branch. Valid values // are dev (development unreleased), rcX (release candidate with current // iteration), stable (indicates a final released version). - Release = "dev" + Release = "stable" )