Skip to content

Commit

Permalink
Prepare release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Jan 22, 2014
1 parent d977ede commit 2fed69a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: java
install: gradle -q assemble
script: gradle -i check | sed 's/\e\[?.*?[\@-~]//g'
script: set -o pipefail; gradle -i check | sed 's/\e\[?.*?[\@-~]//g'
jdk:
- oraclejdk7
branches:
Expand All @@ -9,6 +9,7 @@ branches:
env:
global:
- secure: "NTxp50e11DMSJH1ApQbjlBxY4bcsLAGSw3mYzodOlceybMBh+hbpiAmqBpCZ9878wm5AZcPVq6ULzB47IrdfQG3Xn3SybwWLWpZRI3B0eaqoyhk71J5Uuu9rr+xXoD1C1q/TV1Z0Zf5unR1jz5DmUZ5En8yf4lZ4MI7gft6tDFI="
- DOCS_BRANCH="0.1.0"
- GEN_APIDOCS="gradle javadoc"

after_success:
Expand Down
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,10 @@ Or, build from sources by running:

## Usage

* [Documentation](http://puniverse.github.io/comsat/)
* [Javadoc](http://puniverse.github.io/comsat/javadoc)
* [Documentation](http://docs.paralleluniverse.co/comsat/)
* [Javadoc](http://docs.paralleluniverse.co/comsat/javadoc)

You can also study the examples [here](https://github.com/puniverse/quasar/tree/master/quasar-actors/src/test/java/co/paralleluniverse/actors).

You can also read the introductory [blog post](http://blog.paralleluniverse.co/post/49445260575/quasar-pulsar).

When running code that uses Quasar, the instrumentation agent must be run by adding this to the `java` command line:

```
-javaagent:path-to-quasar-jar.jar
```
You can also study the examples [here](https://github.com/puniverse/comsat-examples).

## Getting help

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ subprojects {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

group = "co.paralleluniverse"
version = "0.1.0-SNAPSHOT"
version = "0.1.0"
status = "integration"
description = "Fibers services for web"
ext.url = "http://puniverse.github.com/comsat"
Expand Down Expand Up @@ -55,7 +55,7 @@ subprojects {
}

dependencies {
compile 'co.paralleluniverse:quasar-core:0.4.0-SNAPSHOT'
compile 'co.paralleluniverse:quasar-core:0.4.0'
markdownDoclet "ch.raffael.pegdown-doclet:pegdown-doclet:1.1.1"
}

Expand Down Expand Up @@ -264,7 +264,7 @@ project (':comsat-jersey-server') {

project (':comsat-actors-api') {
dependencies {
compile 'co.paralleluniverse:quasar-actors:0.4.0-SNAPSHOT'
compile 'co.paralleluniverse:quasar-actors:0.4.0'
}
}

Expand Down
6 changes: 3 additions & 3 deletions docs/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<div class="container">
<div id="logo-footer"></div>
<ul>
<li><a href="http://paralleluniverse.co/support/support/">Support</a></li>
<li><a href="http://paralleluniverse.co/support/documentation/">Documentation</a></li>
<li><a href="http://paralleluniverse.co/support/about/">Company</a></li>
<li><a href="http://paralleluniverse.co/support/">Support</a></li>
<li><a href="http://docs.paralleluniverse.co">Documentation</a></li>
<li><a href="http://paralleluniverse.co/about/">Company</a></li>
<li><a href="http://blog.paralleluniverse.co">Blog</a></li>
</ul>
<a href="https://www.facebook.com/puniverseco" class="social social1">social</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<script src="{{site.baseurl}}/js/main.js"></script>

<script>
var _gaq=[['_setAccount','XXX'],['_trackPageview']];
var _gaq=[['_setAccount','UA-25007319-2'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ul>
</li>
<li><a href="http://paralleluniverse.co/support/">Support</a></li>
<li><a href="http://paralleluniverse.co/documentation/">Documentation</a></li>
<li><a href="http://docs.paralleluniverse.co">Documentation</a></li>
<li><a href="http://paralleluniverse.co/about/">Company</a></li>
<li><a href="http://blog.paralleluniverse.co">Blog</a></li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions travis/post_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if [ "$TRAVIS_BRANCH" == "$DOCS_BRANCH" ]; then
gem install kramdown
gem install jekyll
gem install typogruby
gem install nokogiri

if [ ! -z "$GEN_APIDOCS" ]; then
echo -e "Generating API docs...\n"
Expand Down

0 comments on commit 2fed69a

Please sign in to comment.