From 1bb398cff65017c79d04bedd26915bca03a77521 Mon Sep 17 00:00:00 2001 From: pron Date: Wed, 26 Mar 2014 18:11:34 +0200 Subject: [PATCH] prepare 0.5.0 release --- .travis.yml | 2 +- README.md | 4 ++-- docs/_config.yml | 2 +- docs/index.md | 6 +++++- project.clj | 8 ++++---- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 466fab7..ed90c70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/README.md b/README.md index f824b79..303cdcc 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docs/_config.yml b/docs/_config.yml index 0e8c1a5..a872584 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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 diff --git a/docs/index.md b/docs/index.md index a927a26..1ee08c7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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 diff --git a/project.clj b/project.clj index 8e0a7d9..b89aa58 100644 --- a/project.clj +++ b/project.clj @@ -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"} @@ -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]] @@ -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