From 61b21f8e125959f9300a626d37c813ae2a099e13 Mon Sep 17 00:00:00 2001 From: Luke Westby Date: Wed, 9 Dec 2020 08:53:30 -0800 Subject: [PATCH] bump, changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ elm.json | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8b1b72..fa32842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +### 8.0.0 + +Adds support for `tracker` on requests + +#### Additions + +- `HttpBuilder.withTracker`: adds a tracker key to the request builder + +#### Changes + +- Add a new property `tracker` to `RequestBuilder` + +### 7.0.1 + +Fixes misspelled content-type for x-www-form-urlencoded bodies + +#### Changes + +- Fixes misspelled content-type for x-www-form-urlencoded bodies. Prior to this change +it was spelled `x-www-form-urlencode`, which is missing the final `d`. Fix provided by +@TheAlemazing. + ### 7.0.0 Upgrades the underlying elm/http version to the 2.0.0 API. diff --git a/elm.json b/elm.json index 05dc211..a1845e9 100644 --- a/elm.json +++ b/elm.json @@ -3,7 +3,7 @@ "name": "lukewestby/elm-http-builder", "summary": "Pipeable functions for building HTTP requests", "license": "MIT", - "version": "7.0.1", + "version": "8.0.0", "exposed-modules": [ "HttpBuilder", "HttpBuilder.Task" @@ -17,4 +17,4 @@ "elm/url": "1.0.0 <= v < 2.0.0" }, "test-dependencies": {} -} \ No newline at end of file +}