From 53f4dda4e5fd371d7a7f146e1d37adcb3f8d3d66 Mon Sep 17 00:00:00 2001 From: Manuel Mauky Date: Mon, 12 Jan 2015 15:57:48 +0100 Subject: [PATCH] update version to 0.4.0 --- README.md | 22 +++++++++++----------- build.gradle | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index bff0a12..12e1f3e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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(); @@ -143,13 +143,13 @@ 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: @@ -157,7 +157,7 @@ Maven: eu.lestard advanced-bindings - 0.2.0 + 0.3.0 ``` @@ -165,4 +165,4 @@ Maven: ## Links -[JavaDoc](https://lestard.github.io/advanced-bindings/javadoc/0.2.0/) +[JavaDoc](https://lestard.github.io/advanced-bindings/javadoc/0.3.0/) diff --git a/build.gradle b/build.gradle index 7e34932..4846ad7 100644 --- a/build.gradle +++ b/build.gradle @@ -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" @@ -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" }