Skip to content

Commit 340ff33

Browse files
committed
Release 1.1.0
1 parent a0a7a75 commit 340ff33

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

README.org

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,14 @@ or open an issue if you have any problems.
4747
=clj-http= is available as a Maven artifact from [[http://clojars.org/clj-http][Clojars]]:
4848

4949
#+BEGIN_SRC clojure
50-
[clj-http "1.0.1"]
50+
[clj-http "1.1.0"]
5151
#+END_SRC
5252

5353
Previous versions available as
5454

5555
#+BEGIN_SRC clojure
5656
[clj-http "1.0.1"]
57+
[clj-http "1.0.1"]
5758
[clj-http "0.9.2"]
5859
[clj-http "0.9.1"]
5960
[clj-http "0.9.0"]

changelog.org

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@
99

1010
* Changelog
1111
List of user-visible changes that have gone into each release
12+
** 1.1.0
13+
- merged https://github.com/dakrone/clj-http/pull/255 to add support for Windows
14+
NTLM authentication
15+
- Add the `with-additional-middleware` macro
16+
- Add the ability to specify form-param-encoding for encoding form parameters
17+
- merged https://github.com/dakrone/clj-http/pull/248 to removed deprecated
18+
cookie APIs from cookie.clj
19+
- merged https://github.com/dakrone/clj-http/pull/245 to do some cleanups and
20+
small import fixes
21+
- merged https://github.com/dakrone/clj-http/pull/240 to implement
22+
meta/with-meta for the header map
23+
- merged https://github.com/dakrone/clj-http/pull/242 fixing a connection leak
24+
when http-entity is null
25+
- bumped all dependencies to latest versions
26+
- merged https://github.com/dakrone/clj-http/pull/235 to fix wrap-nested-params
27+
- merged https://github.com/dakrone/clj-http/pull/236 to clean up multipart
28+
constructors and reflection
29+
- merged https://github.com/dakrone/clj-http/pull/234 to allow scheme
30+
customization in default connection
1231
** 1.0.1
1332
- merged https://github.com/dakrone/clj-http/pull/232 to fix =empty= on
1433
header-map

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-http "1.0.2-SNAPSHOT"
1+
(defproject clj-http "1.1.0"
22
:description "A Clojure HTTP library wrapping the Apache HttpComponents client."
33
:url "https://github.com/dakrone/clj-http/"
44
:license {:name "The MIT License"

0 commit comments

Comments
 (0)