From 2147e1f51095a215e05bd2830d2c60a4e410e21e Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Tue, 22 Oct 2024 08:19:11 +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 2df8ea5..6f96dc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.14.0 [unreleased] + ## 0.13.0 [2024-10-22] ### Features diff --git a/influxdb3/version.go b/influxdb3/version.go index 0225099..9cd222a 100644 --- a/influxdb3/version.go +++ b/influxdb3/version.go @@ -27,7 +27,7 @@ import ( ) // version defines current version -const version = "0.13.0" +const version = "0.14.0" // userAgent header value const userAgent = "influxdb3-go/" + version + " (" + runtime.GOOS + "; " + runtime.GOARCH + ")"