Skip to content

Commit fbaead7

Browse files
authored
release 0.0.9 (#38)
1 parent cc9a6cc commit fbaead7

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

RELEASE_NOTES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release Notes
22

3+
## 0.0.9 Add more retry parameters
4+
5+
* fix: recovery from error mode - when DataSet HTTP req sending fails consuming of additional input events is blocked. Fix issue with rejected input events once retry attempts times out.
6+
* feat: change the content of User-Agent header in order to send more details. Also allow library consumer to define additional details.
7+
* Refactoring and documentation
8+
9+
## 0.0.8 Improve logging
10+
11+
* Log amount of transferred bytes to DataSet
12+
313
## 0.0.7 Add more retry parameters
414

515
* To make OpenTelemetry configuration more stable we have introduced more retry options. We have to propagate them to the library.

pkg/version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
package version
1818

1919
const (
20-
Version = "0.0.8"
21-
ReleasedDate = "2023-05-30"
20+
Version = "0.0.9"
21+
ReleasedDate = "2023-06-22"
2222
)

pkg/version/version_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ import (
2323
)
2424

2525
func TestVersion(t *testing.T) {
26-
assert.Equal(t, "0.0.8", Version)
27-
assert.Equal(t, "2023-05-30", ReleasedDate)
26+
assert.Equal(t, "0.0.9", Version)
27+
assert.Equal(t, "2023-06-22", ReleasedDate)
2828
}

0 commit comments

Comments
 (0)