From c02e9fe78908db79fa3e8926c203b4a4ddcba638 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sat, 2 Oct 2021 11:32:13 -0700 Subject: [PATCH] Update go.mod and CHANGES.md for release --- CHANGES.md | 5 +++++ examples/go.mod | 2 +- go.mod | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0abb2e5..22e5b12 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,11 @@ Notable changes between releases. ## Latest +## v1.4.0 + +* `Do` reads Body to reuse HTTP/1.x "keep-alive" TCP connections ([#59](https://github.com/dghubble/sling/pull/59)) +* `Receive` skips decoding if status is 204 (no content) ([#63](https://github.com/dghubble/sling/pull/63)) + ## v1.3.0 * Add Sling `ResponseDecoder` setter for receiving responses with a custom `ResponseDecoder` ([#49](https://github.com/dghubble/sling/pull/49)) diff --git a/examples/go.mod b/examples/go.mod index 6245cb5..f81cba0 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -1,6 +1,6 @@ module github.com/dghubble/sling/examples -go 1.12 +go 1.16 require ( github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f diff --git a/go.mod b/go.mod index be8e282..47d3d79 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/dghubble/sling -go 1.12 +go 1.16 require github.com/google/go-querystring v1.1.0