Skip to content

Commit

Permalink
prepare 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Mar 26, 2014
1 parent 0228a6e commit 1bb398c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ branches:
env:
global:
- secure: "awdH1k9QfkxoeiS29nqnSEOMcY7tCvilNIM1pEtp3XkoPRxFzSqmCHNfDQnaqOVLr40dcDId08JP7CUWFZCkKPeQko+yTgHbr29R2+vAHlmSIiZiRrSP7I4yX+MN4ePrFjI+ltEx1cr5JWTGhtFPbILimKvpl4vCpmL5Kixqi30="
- DOCS_BRANCH="0.4.0"
- DOCS_BRANCH="0.5.0"
- 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Java 7 and Clojure 1.5 are required to run Pulsar.
Add the following dependency to [Leiningen](http://github.com/technomancy/leiningen/)'s project.clj:

```clojure
[co.paralleluniverse/pulsar "0.4.0"]
[co.paralleluniverse/pulsar "0.5.0"]
```

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

~~~ clojure
:java-agents [[co.paralleluniverse/quasar-core "0.4.0"]]
:java-agents [[co.paralleluniverse/quasar-core "0.5.0"]]
~~~

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

# Site globals used throughout docs.
project: Pulsar
version: 0.4.0
version: 0.5.0
github: puniverse/pulsar
google_group: "https://groups.google.com/forum/#!forum/quasar-pulsar-user"
ga_tracking_id: UA-25007319-2
Expand Down
6 changes: 5 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ Aside from Pulsar's dependency on Quasar and its dependent libraries, Pulsar mak

## News

### March, 2014

Pulsar 0.5.0 has been released.

### January 22, 2014

Quasar 0.4.0 has been released.
Pulsar 0.4.0 has been released.

### July 26, 2013

Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject co.paralleluniverse/pulsar "0.5.0-SNAPSHOT"
(defproject co.paralleluniverse/pulsar "0.5.0"
: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.5.0-SNAPSHOT"]
[co.paralleluniverse/quasar-actors "0.5.0-SNAPSHOT"]
[co.paralleluniverse/quasar-core "0.5.0"] ; :classifier "jdk8"
[co.paralleluniverse/quasar-actors "0.5.0"]
[org.clojure/core.match "0.2.1"]
[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.5.0-SNAPSHOT"]] ; :options "vd"
:java-agents [[co.paralleluniverse/quasar-core "0.5.0"]] ; :classifier "jdk8" :options "vd"
:pedantic :warn
:profiles {;; ----------- dev --------------------------------------
:dev
Expand Down

0 comments on commit 1bb398c

Please sign in to comment.