From a46b2e58f43ce361f44648b954ca9ff2fdeb1032 Mon Sep 17 00:00:00 2001
From: Jakub Bednar
Date: Fri, 13 Dec 2024 08:44:48 +0100
Subject: [PATCH] chore: prepare for next development iteration [skip ci]
---
CHANGELOG.md | 6 ++++--
README.md | 4 ++--
influxdb3/version.go | 2 +-
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f0b0451..ada62f6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+## 2.1.0 [unreleased]
+
## 2.0.0 [2024-12-13]
### Breaking Changes
@@ -8,8 +10,8 @@
Update steps:
-1. Update library: `go get github.com/influxdata/influxdb3-go/v2`
-1. Update import path in Go files to `github.com/influxdata/influxdb3-go/v2/influxdb3`.
+1. Update library: `go get github.com/InfluxCommunity/influxdb3-go/v2/influxdb3`
+1. Update import path in Go files to `github.com/InfluxCommunity/influxdb3-go/v2/influxdb3`.
### Features
diff --git a/README.md b/README.md
index 14358c6..93c9e05 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-
+
@@ -59,7 +59,7 @@ To use this client, you'll need the following credentials for writing and queryi
```sh
- go get github.com/InfluxCommunity/influxdb3-go/v2
+ go get github.com/InfluxCommunity/influxdb3-go/v2/influxdb3
```
### Outside a module (standalone)
diff --git a/influxdb3/version.go b/influxdb3/version.go
index d79077a..c210d8a 100644
--- a/influxdb3/version.go
+++ b/influxdb3/version.go
@@ -27,7 +27,7 @@ import (
)
// version defines current version
-const version = "2.0.0"
+const version = "2.1.0"
// userAgent header value
const userAgent = "influxdb3-go/" + version + " (" + runtime.GOOS + "; " + runtime.GOARCH + ")"