Skip to content

Commit

Permalink
update version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-mauky committed Jan 12, 2015
1 parent bc14e57 commit 53f4dda
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
[![Build Status](https://travis-ci.org/lestard/advanced-bindings.svg?branch=master)](https://travis-ci.org/lestard/advanced-bindings)


**advanced-bindings** is a collection of useful helpers and custom binding implementations to simplify the
**advanced-bindings** is a collection of useful helpers and custom binding implementations to simplify the
development of applications that are heavily based on JavaFX's Properties
and Bindings.
and Bindings.

## Features

Expand Down Expand Up @@ -100,15 +100,15 @@ public void testMatches(){
StringProperty text = new SimpleStringProperty();

String pattern = "[0-9]*"; // only numbers are allowed

BooleanBinding matches = StringBindings.matches(text, pattern);


text.set("19");

assertThat(matches).isTrue();


text.set("no number");

assertThat(matches).isFalse();
Expand Down Expand Up @@ -143,26 +143,26 @@ public void testSum(){

## New Features?

If you have ideas for new custom bindings that could be added to the library feel free to add an [issue](../../issues).
If you have ideas for new custom bindings that could be added to the library feel free to add an [issue](../../issues).

## How to Use

Gradle:
Gradle:
```groovy
compile 'eu.lestard:advanced-bindings:0.2.0'
compile 'eu.lestard:advanced-bindings:0.3.0'
```

Maven:
```xml
<dependency>
<groupId>eu.lestard</groupId>
<artifactId>advanced-bindings</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
</dependency>
```



## Links

[JavaDoc](https://lestard.github.io/advanced-bindings/javadoc/0.2.0/)
[JavaDoc](https://lestard.github.io/advanced-bindings/javadoc/0.3.0/)
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

group = "eu.lestard"
version = "0.3.0"
version = "0.4.0"

apply from: "maven_upload.gradle"

Expand All @@ -30,7 +30,7 @@ dependencies {
markdownDoclet 'ch.raffael.pegdown-doclet:pegdown-doclet:1.1.1'

// testing
testCompile "eu.lestard:assertj-javafx:0.3.0-SNAPSHOT"
testCompile "eu.lestard:assertj-javafx:0.3.0"
testCompile "org.assertj:assertj-core:1.6.0"
testCompile "junit:junit:4.11"
}
Expand Down

0 comments on commit 53f4dda

Please sign in to comment.