File tree 3 files changed +15
-8
lines changed 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
1
== Changes
2
2
3
+ === 0.3.0
4
+
5
+ * Copied code and tests to nested namespaces, deprecated top-level single-segment ns for Graal/clj-easy
6
+ * Bumped Manifold dep to 0.2.3
7
+
8
+ Contributions by skynet
9
+
3
10
=== 0.2.10
4
11
5
12
* Removed use of clj-tuple
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ This library is a Rosetta stone for all the byte representations Java has to off
12
12
13
13
Leiningen:
14
14
``` clojure
15
- [org.clj-commons/byte-streams " 0.2.10 " ]
15
+ [org.clj-commons/byte-streams " 0.3.0 " ]
16
16
```
17
17
18
18
deps.edn:
19
19
``` clojure
20
- org.clj-commons/byte-streams {:mvn/version " 0.2.10 " }
20
+ org.clj-commons/byte-streams {:mvn/version " 0.3.0 " }
21
21
```
22
22
23
23
### Converting types
Original file line number Diff line number Diff line change 1
- (defproject org.clj-commons /byte-streams (or (System/getenv " PROJECT_VERSION" ) " 0.2.10 " )
1
+ (defproject org.clj-commons /byte-streams (or (System/getenv " PROJECT_VERSION" ) " 0.3.0 " )
2
2
:description " A simple way to handle the menagerie of Java byte representations."
3
3
:license {:name " MIT License"
4
4
:url " http://opensource.org/licenses/MIT" }
8
8
:password :env/clojars_password
9
9
:sign-releases false }]]
10
10
:dependencies [[org.clj-commons/primitive-math " 1.0.0" ]
11
- [manifold " 0.1.9 " ]]
12
- :profiles {:dev {:dependencies [[org.clojure/clojure " 1.10.3 " ]
13
- [org.clojure/test.check " 1.1.0 " ]
11
+ [manifold/manifold " 0.2.3 " ]]
12
+ :profiles {:dev {:dependencies [[org.clojure/clojure " 1.11.1 " ]
13
+ [org.clojure/test.check " 1.1.1 " ]
14
14
[rhizome " 0.2.9" ]
15
15
[codox-md " 0.2.0" :exclusions [org.clojure/clojure]]
16
16
[criterium " 0.4.6" ]]}
17
17
:ci {:javac-options [" -target" " 1.8" " -source" " 1.8" ]
18
- :dependencies [[org.clojure/clojure " 1.10 .1" ]
19
- [org.clojure/test.check " 1.1.0 " ]
18
+ :dependencies [[org.clojure/clojure " 1.11 .1" ]
19
+ [org.clojure/test.check " 1.1.1 " ]
20
20
[rhizome " 0.2.9" ]]}}
21
21
:test-selectors {:stress :stress
22
22
:default (complement :stress )}
You can’t perform that action at this time.
0 commit comments