From d72f1007e94fd12d281ac2522ca0f691d9c07946 Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Fri, 27 Sep 2024 12:37:10 +0200 Subject: [PATCH] chore: prepare for next development iteration [skip ci] --- CHANGELOG.md | 2 ++ influxdb3/version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7440adc..eb9efd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.12.0 [unreleased] + ## 0.11.0 [2024-09-27] ### Bug Fixes diff --git a/influxdb3/version.go b/influxdb3/version.go index 498fa38..84459b0 100644 --- a/influxdb3/version.go +++ b/influxdb3/version.go @@ -27,7 +27,7 @@ import ( ) // version defines current version -const version = "0.11.0" +const version = "0.12.0" // userAgent header value const userAgent = "influxdb3-go/" + version + " (" + runtime.GOOS + "; " + runtime.GOARCH + ")"