Skip to content

Commit

Permalink
0.1.0 \o/ πŸŽ‰
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen committed Dec 4, 2015
1 parent ad88a88 commit c38f55e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Create a new Ceylon module:

```ceylon
module gyokuro.demo.rest "1.0.0" {
import com.github.bjansen.gyokuro "0.1";
import com.github.bjansen.gyokuro "0.1.0";
import ceylon.net "1.2.0-3";
}
```
Expand Down Expand Up @@ -122,3 +122,6 @@ Will be mapped to `http://localhost:8080/rest/duck/talk`.
## Want to learn more?

See the [complete documentation](http://bjansen.github.io/gyokuro/doc/0.1/) for more info.

You can find examples in the [demos directory](https://github.com/bjansen/gyokuro/tree/master/demos/).

2 changes: 1 addition & 1 deletion demos/gyokuro/demo/rest/module.ceylon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
native("jvm")
module gyokuro.demo.rest "1.0.0" {
import com.github.bjansen.gyokuro "0.1";
import com.github.bjansen.gyokuro "0.1.0";
import ceylon.logging "1.2.0";
}
2 changes: 1 addition & 1 deletion source/com/github/bjansen/gyokuro/module.ceylon
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
and Spark, for creating web applications with very few boilerplate.
It is based on the Ceylon SDK and uses ceylon.net."
native("jvm")
module com.github.bjansen.gyokuro "0.1" {
module com.github.bjansen.gyokuro "0.1.0" {
shared import ceylon.net "1.2.0-3";
import ceylon.logging "1.2.0";
import ceylon.collection "1.2.0";
Expand Down
4 changes: 2 additions & 2 deletions test-source/test/com/github/bjansen/gyokuro/module.ceylon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
native("jvm")
module test.com.github.bjansen.gyokuro "0.1" {
import com.github.bjansen.gyokuro "0.1";
module test.com.github.bjansen.gyokuro "0.1.0" {
import com.github.bjansen.gyokuro "0.1.0";
import ceylon.test "1.2.0";
import ceylon.logging "1.2.0";
}

0 comments on commit c38f55e

Please sign in to comment.