Skip to content

Commit bd2ce96

Browse files
committed
💚 Prepare release 0.7.9
1 parent b0edf89 commit bd2ce96

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# *Pulsar*<br/>Fibers, Channels and Actors for Clojure
2-
[![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.8-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)
2+
[![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.9-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)
33

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

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

1414
```clojure
15-
[co.paralleluniverse/quasar-core "0.7.8"]
16-
[co.paralleluniverse/pulsar "0.7.8"]
15+
[co.paralleluniverse/quasar-core "0.7.9"]
16+
[co.paralleluniverse/pulsar "0.7.9"]
1717
```
1818

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

2121
~~~ clojure
22-
:java-agents [[co.paralleluniverse/quasar-core "0.7.8"]]
22+
:java-agents [[co.paralleluniverse/quasar-core "0.7.9"]]
2323
~~~
2424

2525
or, add the following to the java command line:
@@ -80,7 +80,7 @@ Pulsar is free software published under the following license:
8080

8181

8282
```
83-
Copyright © 2013-2016 Parallel Universe
83+
Copyright © 2013-2017 Parallel Universe
8484
8585
This program and the accompanying materials are dual-licensed under
8686
either the terms of the Eclipse Public License v1.0 as published by

docs/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kramdown:
99

1010
# Site globals used throughout docs.
1111
project: Pulsar
12-
version: 0.7.8
12+
version: 0.7.9
1313
github: puniverse/pulsar
1414
google_group: "https://groups.google.com/forum/#!forum/quasar-pulsar-user"
1515
ga_tracking_id: UA-25007319-2

docs/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ Aside from Pulsar's dependency on Quasar and its dependent libraries, Pulsar mak
2525

2626
## News
2727

28+
### July 28, 2017
29+
30+
Pulsar [0.7.9](https://github.com/puniverse/pulsar/releases/tag/v0.7.9) has been released.
31+
2832
### May 24, 2017
2933

3034
Pulsar [0.7.8](https://github.com/puniverse/pulsar/releases/tag/v0.7.8) has been released.

project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
(def quasar-version "0.7.9-SNAPSHOT")
1+
(def quasar-version "0.7.9")
22

3-
(defproject co.paralleluniverse/pulsar "0.7.9-SNAPSHOT"
3+
(defproject co.paralleluniverse/pulsar "0.7.9"
44
:description "A Clojure lightweight thread, asynchronous programming, and actor library"
55
:url "http://github.com/puniverse/pulsar"
66
:licenses [{:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html"}

0 commit comments

Comments
 (0)