diff options
| author | Shulhan <ms@kilabit.info> | 2021-04-06 19:43:41 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-04-06 19:43:41 +0700 |
| commit | ba20dd55c85a0222a776bcddf2e563d34d1a4dbe (patch) | |
| tree | 0a22eb653bd99383e01572ee63c471524bcff1fa | |
| parent | 11b20e5fdc1b47349e70c0c8075c116aefe45685 (diff) | |
| download | pakakeh.go-ba20dd55c85a0222a776bcddf2e563d34d1a4dbe.tar.xz | |
Release share v0.25.1 (2021-04-06)v0.25.1
Set the minimum Go version to 1.16
Commit 4cdd6b01c1 "http: add method to generate standard HTTP request
on Client" use the io.NopCloser thats only available in Go 1.16. Either
we move backward by replacing it with ioutil.NopCloser or we move forward
by setting the minimum Go version to 1.16.
We choose to move forward.
| -rw-r--r-- | CHANGELOG.adoc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 83e83a74..bccc5d05 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,6 +3,18 @@ This library is released every month, usually at the first week of month. +== share v0.25.1 (2021-04-06) + +Set the minimum Go version to 1.16 + +Commit 4cdd6b01c1 "http: add method to generate standard HTTP request +on Client" use the io.NopCloser thats only available in Go 1.16. Either +we move backward by replacing it with ioutil.NopCloser or we move forward +by setting the minimum Go version to 1.16. + +We choose to move forward. + + == share v0.25.0 (2021-04-06) === Breaking changes |
