Skip to content

Commit a88b09b

Browse files
committed
Release 0.3.4
1 parent d5522d6 commit a88b09b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
== Changes
22

3+
=== 0.3.4
4+
5+
* Fixed type hint bug where `to-output-stream` was mistakenly hinted as an InputStream
6+
7+
Contribution by Matthew Davidson.
8+
39
=== 0.3.3
410

511
* Temporarily removed some type hints that AOT fails on

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ This library is a Rosetta stone for all the byte representations Java has to off
1212

1313
Leiningen:
1414
```clojure
15-
[org.clj-commons/byte-streams "0.3.3"]
15+
[org.clj-commons/byte-streams "0.3.4"]
1616
```
1717

1818
deps.edn:
1919
```clojure
20-
org.clj-commons/byte-streams {:mvn/version "0.3.3"}
20+
org.clj-commons/byte-streams {:mvn/version "0.3.4"}
2121
```
2222

2323
### Converting types

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clj-commons/byte-streams (or (System/getenv "PROJECT_VERSION") "0.3.3")
1+
(defproject org.clj-commons/byte-streams (or (System/getenv "PROJECT_VERSION") "0.3.4")
22
:description "A simple way to handle the menagerie of Java byte representations."
33
:license {:name "MIT License"
44
:url "http://opensource.org/licenses/MIT"}

0 commit comments

Comments
 (0)