Skip to content

Commit

Permalink
Prepare release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Sep 23, 2014
1 parent d181a12 commit 8ad0e27
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -9,7 +9,7 @@ branches:
env:
global:
- secure: "awdH1k9QfkxoeiS29nqnSEOMcY7tCvilNIM1pEtp3XkoPRxFzSqmCHNfDQnaqOVLr40dcDId08JP7CUWFZCkKPeQko+yTgHbr29R2+vAHlmSIiZiRrSP7I4yX+MN4ePrFjI+ltEx1cr5JWTGhtFPbILimKvpl4vCpmL5Kixqi30="
- DOCS_BRANCH="0.6.0"
- DOCS_BRANCH="0.6.1"
- GEN_APIDOCS="lein2 with-profile doc do doc, marg src/test/clojure/co/paralleluniverse/pulsar/*.clj src/test/clojure/co/paralleluniverse/pulsar/examples/*.clj"

after_success:
Expand Down
6 changes: 3 additions & 3 deletions README.md
@@ -1,5 +1,5 @@
# *Pulsar*<br/>Lightweight threads, Go-like channels, and Erlang-like actors for Clojure
[![Build Status](http://img.shields.io/travis/puniverse/pulsar.svg?style=flat)](https://travis-ci.org/puniverse/pulsar) [![Dependency Status](https://www.versioneye.com/user/projects/52b019ccec137505ee00002e/badge.png?style=flat)](https://www.versioneye.com/user/projects/52b019ccec137505ee00002e) [![Version](http://img.shields.io/badge/version-0.6.0-blue.svg?style=flat)](https://github.com/puniverse/pulsar/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) [![License](http://img.shields.io/badge/license-LGPL-blue.svg?style=flat)](https://www.gnu.org/licenses/lgpl.html)
[![Build Status](http://img.shields.io/travis/puniverse/pulsar.svg?style=flat)](https://travis-ci.org/puniverse/pulsar) [![Dependency Status](https://www.versioneye.com/user/projects/52b019ccec137505ee00002e/badge.png?style=flat)](https://www.versioneye.com/user/projects/52b019ccec137505ee00002e) [![Version](http://img.shields.io/badge/version-0.6.1-blue.svg?style=flat)](https://github.com/puniverse/pulsar/releases) [![License](http://img.shields.io/badge/license-EPL-blue.svg?style=flat)](https://www.eclipse.org/legal/epl-v10.html) [![License](http://img.shields.io/badge/license-LGPL-blue.svg?style=flat)](https://www.gnu.org/licenses/lgpl.html)

Pulsar wraps the [Quasar](https://github.com/puniverse/quasar) library with a Clojure API that's very similar to Erlang.

Expand All @@ -12,13 +12,13 @@ Java 7 and up and Clojure 1.5 and up are required to run Pulsar.
Add the following dependency to [Leiningen](http://github.com/technomancy/leiningen/)'s project.clj:

```clojure
[co.paralleluniverse/pulsar "0.6.0"]
[co.paralleluniverse/pulsar "0.6.1"]
```

Then, the following must be added to the project.clj file:

~~~ clojure
:java-agents [[co.paralleluniverse/quasar-core "0.6.0"]]
:java-agents [[co.paralleluniverse/quasar-core "0.6.1"]]
~~~

or, add the following to the java command line:
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Expand Up @@ -9,7 +9,7 @@ kramdown:

# Site globals used throughout docs.
project: Pulsar
version: 0.6.0
version: 0.6.1
github: puniverse/pulsar
google_group: "https://groups.google.com/forum/#!forum/quasar-pulsar-user"
ga_tracking_id: UA-25007319-2
4 changes: 4 additions & 0 deletions docs/index.md
Expand Up @@ -25,6 +25,10 @@ Aside from Pulsar's dependency on Quasar and its dependent libraries, Pulsar mak

## News

### September 23, 2014

Pulsar [0.6.1](https://github.com/puniverse/pulsar/releases/tag/v0.6.1) has been released.

### July 23, 2014

Pulsar [0.6.0](https://github.com/puniverse/pulsar/releases/tag/v0.6.0) has been released.
Expand Down
10 changes: 5 additions & 5 deletions project.clj
@@ -1,4 +1,4 @@
(defproject co.paralleluniverse/pulsar "0.6.1-SNAPSHOT"
(defproject co.paralleluniverse/pulsar "0.6.1"
:description "A Clojure lightweight thread, asynchronous programming, and actor library"
:url "http://github.com/puniverse/pulsar"
:licenses [{:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html"}
Expand All @@ -14,8 +14,8 @@
"releases" "https://oss.sonatype.org/content/repositories/releases"}
:test-selectors {:selected :selected}
:dependencies [[org.clojure/clojure "1.5.1"]
[co.paralleluniverse/quasar-core "0.6.1-SNAPSHOT"] ; :classifier "jdk8"
[co.paralleluniverse/quasar-actors "0.6.1-SNAPSHOT"]
[co.paralleluniverse/quasar-core "0.6.1"] ; :classifier "jdk8"
[co.paralleluniverse/quasar-actors "0.6.1"]
[org.clojure/core.match "0.2.2" :exclusions [org.ow2.asm/*]]
[useful "0.8.8"]
[gloss "0.2.2" :exclusions [com.yammer.metrics/metrics-core useful]]
Expand All @@ -28,7 +28,7 @@
"-XX:-UseBiasedLocking"
"-XX:+UseCondCardMark"]
;:injections [(alter-var-root #'*compiler-options* (constantly {:disable-locals-clearing true}))]
:java-agents [[co.paralleluniverse/quasar-core "0.6.1-SNAPSHOT"]] ; :classifier "jdk8" :options "vd"
:java-agents [[co.paralleluniverse/quasar-core "0.6.1"]] ; :classifier "jdk8" :options "vd"
:pedantic :warn
:profiles {;; ----------- dev --------------------------------------
:dev
Expand All @@ -52,7 +52,7 @@
;; ----------- cluster --------------------------------------
:cluster
{:repositories {"oracle" "http://download.oracle.com/maven/"}
:dependencies [[co.paralleluniverse/quasar-galaxy "0.6.0"]]
:dependencies [[co.paralleluniverse/quasar-galaxy "0.6.1"]]
:java-source-paths ["src/cluster/java"]
:jvm-opts [;; Debugging
"-ea"
Expand Down

0 comments on commit 8ad0e27

Please sign in to comment.