Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit b92419f

Browse files
authored
Merge pull request #45 from trevorbernard/master
Prepare to release new version
2 parents 7a84f43 + c0475a2 commit b92419f

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Clojure bindings for ØMQ.
77
## Installation
88

99
```clj
10-
[org.zeromq/cljzmq "0.1.4"]
10+
[org.zeromq/cljzmq "0.1.5"]
1111
```
1212
(see [FAQ](https://github.com/zeromq/cljzmq/wiki/FAQ) for how to make it work with jeromq)
1313

@@ -23,7 +23,7 @@ To use the latest and greatest snapshot, add the OSS Sonatype repository to your
2323
Add the following dependency to your `project.clj` file:
2424

2525
```clj
26-
[org.zeromq/cljzmq "0.1.5-SNAPSHOT"]
26+
[org.zeromq/cljzmq "0.1.6-SNAPSHOT"]
2727
```
2828

2929
## Documentation
@@ -39,7 +39,7 @@ YourKit is kindly supporting ZeroMQ project with its full-featured [Java Profile
3939

4040
## License
4141

42-
Copyright © 2013-2015 Contributors as noted in the AUTHORS.md file
42+
Copyright © 2013-2016 Contributors as noted in the AUTHORS.md file
4343

4444
This is free software; you can redistribute it and/or modify it under the terms
4545
of the GNU Lesser General Public License as published by the Free Software

project.clj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,23 @@
33
:url "https://github.com/zeromq/cljzmq"
44
:license {:name "LGPLv3+"
55
:url "http://www.gnu.org/licenses/lgpl.html"}
6-
:dependencies [[org.clojure/clojure "1.6.0"]
7-
[org.zeromq/jzmq "3.0.1"]]
6+
:dependencies [[org.clojure/clojure "1.8.0"]
7+
[org.zeromq/jzmq "3.1.1-SNAPSHOT"]]
88
:codox {:src-dir-uri "http://github.com/zeromq/cljzmq/blob/master"
99
:src-linenum-anchor-prefix "L"}
1010
:profiles
11-
{:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
12-
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
13-
:1.5.1 {:dependencies [[org.clojure/clojure "1.5.1"]]}}
14-
:aliases {"all" ["with-profile" "dev:1.3:1.4:1.5.1"]}
11+
{:1.5.1 {:dependencies [[org.clojure/clojure "1.5.1"]]}
12+
:1.6.0 {:dependencies [[org.clojure/clojure "1.6.0"]]}
13+
:1.7.0 {:dependencies [[org.clojure/clojure "1.7.0"]]}}
14+
:aliases {"all" ["with-profile" "dev:1.5.1:1.6.0:1.7.0"]}
1515
:repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
1616
:username [:gpg :env/NEXUS_USERNAME]
1717
:password [:gpg :env/NEXUS_PASSWORD]}]
1818
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"
1919
:username [:gpg :env/NEXUS_USERNAME]
2020
:password [:gpg :env/NEXUS_PASSWORD]
2121
:update :always}]]
22+
:jvm-opts ^:replace ["-Djava.library.path=/usr/lib:/usr/local/lib"]
2223
:pom-addition [:developers
2324
[:developer
2425
[:name "Trevor Bernard"]

0 commit comments

Comments
 (0)