Skip to content

Commit

Permalink
💚 Prepare release 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Aug 7, 2016
1 parent 064e1e8 commit 50107d6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
@@ -1,5 +1,5 @@
# *Quasar*<br/>Fibers, Channels and Actors for the JVM
[![Build Status](https://travis-ci.org/puniverse/quasar.svg?branch=master)](https://travis-ci.org/puniverse/quasar) [![Dependency Status](https://www.versioneye.com/user/projects/52b019baec1375ace70000de/badge.png?style=flat)](https://www.versioneye.com/user/projects/52b019baec1375ace70000de) [![Version](http://img.shields.io/badge/version-0.7.5-blue.svg?style=flat)](https://github.com/puniverse/quasar/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/quasar.svg?branch=master)](https://travis-ci.org/puniverse/quasar) [![Dependency Status](https://www.versioneye.com/user/projects/52b019baec1375ace70000de/badge.png?style=flat)](https://www.versioneye.com/user/projects/52b019baec1375ace70000de) [![Version](http://img.shields.io/badge/version-0.7.6-blue.svg?style=flat)](https://github.com/puniverse/quasar/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)


## Getting started
Expand All @@ -8,12 +8,12 @@ Add the following Maven/Gradle dependencies:

| Feature | Artifact
|------------------|------------------
| Core (required) | `co.paralleluniverse:quasar-core:0.7.5[:jdk8]` (for JDK 8 optionally add the `jdk8` classifier)
| Actors | `co.paralleluniverse:quasar-actors:0.7.5`
| Clustering | `co.paralleluniverse:quasar-galaxy:0.7.5`
| Reactive Streams | `co.paralleluniverse:quasar-reactive-streams:0.7.5`
| Disruptor Channels| `co.paralleluniverse:quasar-disruptor:0.7.5`
| Kotlin | `co.paralleluniverse:quasar-kotlin:0.7.5`
| Core (required) | `co.paralleluniverse:quasar-core:0.7.6[:jdk8]` (for JDK 8 optionally add the `jdk8` classifier)
| Actors | `co.paralleluniverse:quasar-actors:0.7.6`
| Clustering | `co.paralleluniverse:quasar-galaxy:0.7.6`
| Reactive Streams | `co.paralleluniverse:quasar-reactive-streams:0.7.6`
| Disruptor Channels| `co.paralleluniverse:quasar-disruptor:0.7.6`
| Kotlin | `co.paralleluniverse:quasar-kotlin:0.7.6`

Or, build from sources by running:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -20,7 +20,7 @@ subprojects {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

group = "co.paralleluniverse"
version = "0.7.6-SNAPSHOT"
version = "0.7.6"
status = "integration"
description = "Fibers, Channels and Actors for the JVM"
ext.url = "http://puniverse.github.com/quasar"
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Expand Up @@ -6,7 +6,7 @@ baseurl: /quasar

## Site globals used throughout docs.
project: Quasar
version: 0.7.5
version: 0.7.6
github: puniverse/quasar
google_group: "https://groups.google.com/forum/#!forum/quasar-pulsar-user"
ga_tracking_id: UA-25007319-2
Expand Down
8 changes: 6 additions & 2 deletions docs/index.md
Expand Up @@ -30,6 +30,10 @@ A core component of Quasar, bytecode instrumentation, is a fork of the wonderful

## News

### August 7, 2016

Quasar [0.7.6](https://github.com/puniverse/quasar/releases/tag/v0.7.6) has been released.

### May 2, 2016

Quasar [0.7.5](https://github.com/puniverse/quasar/releases/tag/v0.7.5) has been released.
Expand Down Expand Up @@ -651,7 +655,7 @@ Now an interesting verification stacktrace is getting printed over and over (whi

~~~
[quasar] WARNING: Uninstrumented methods (marked '**') or call-sites (marked '!!')
detected on the call stack:
detected on the call stack:
at co.paralleluniverse.common.util.ExtendedStackTrace.here
(ExtendedStackTrace.java:44 bci: 8)
at co.paralleluniverse.fibers.Fiber.checkInstrumentation (Fiber.java:1668 bci: 0)
Expand Down Expand Up @@ -1221,7 +1225,7 @@ Event handlers are called synchronously on the same strand as the actor's and _s

The finite-state-machine behavior is an actor that switches among a set of states and behaves differently in each.

To create a finite state machine actor, simply construct an instance of the
To create a finite state machine actor, simply construct an instance of the
[`FiniteStateMachineActor`]({{javadoc}}/actors/behaviors/FiniteStateMachineActor.html) class. Each of the actor's states is represented by a `SuspendableCallable` implementation returning the next state, or the special `FiniteStateMachineActor.TERMINATE` state to terminate the actor. You need to override the `initialState` method so that it returns the actor's initial state. This class is best enjoyed using Java 8 lambda syntax, as in the following example:

~~~ Java
Expand Down

0 comments on commit 50107d6

Please sign in to comment.