diff --git a/README.md b/README.md index 1596d52..6ac49b5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # *Pulsar*
Fibers, Channels and Actors for Clojure -[![Build Status](https://travis-ci.org/puniverse/pulsar.svg?branch=master)](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.7.3-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](https://travis-ci.org/puniverse/pulsar.svg?branch=master)](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.7.4-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. @@ -12,14 +12,14 @@ Java 7 and up and Clojure 1.5 and up are required to run Pulsar. Add the following dependencies to [Leiningen](http://github.com/technomancy/leiningen/)'s project.clj: ```clojure -[co.paralleluniverse/quasar-core "0.7.3"] -[co.paralleluniverse/pulsar "0.7.3"] +[co.paralleluniverse/quasar-core "0.7.4"] +[co.paralleluniverse/pulsar "0.7.4"] ``` Then, the following must be added to the project.clj file: ~~~ clojure -:java-agents [[co.paralleluniverse/quasar-core "0.7.3"]] +:java-agents [[co.paralleluniverse/quasar-core "0.7.4"]] ~~~ or, add the following to the java command line: diff --git a/docs/_config.yml b/docs/_config.yml index a8efc92..a66aa3e 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -9,7 +9,7 @@ kramdown: # Site globals used throughout docs. project: Pulsar -version: 0.7.3 +version: 0.7.4 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 8a3f9d2..485f4c3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,6 +25,10 @@ Aside from Pulsar's dependency on Quasar and its dependent libraries, Pulsar mak ## News +### January 18, 2016 + +Pulsar [0.7.4](https://github.com/puniverse/quasar/releases/tag/v0.7.4) has been released. + ### August 28, 2015 Pulsar [0.7.3](https://github.com/puniverse/quasar/releases/tag/v0.7.3) has been released. diff --git a/project.clj b/project.clj index 83f0d3a..b02175e 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ -(def quasar-version "0.7.4-SNAPSHOT") +(def quasar-version "0.7.4") -(defproject co.paralleluniverse/pulsar "0.7.4-SNAPSHOT" +(defproject co.paralleluniverse/pulsar "0.7.4" :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"}