diff --git a/CHANGELOG.md b/CHANGELOG.md index e1c3722..6277570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 2.1.0 +*** + +- Can configure notification timeout ([c5440aa](http://github.com/jcgay/gradle-notifier/commit/c5440aa06026d093c9d7ed5062eeb1b12d495918)) +- Use send-notification 0.14.0 ([31b2068](http://github.com/jcgay/gradle-notifier/commit/31b20682406d4aab4fd93bb4bb37d20df0d6d6f2)) + - Default RuntimeExecutor timeout is now 500 ms ([8d792b5](http://github.com/jcgay/send-notification/commit/8d792b5642264403b9072f61cd2c2d8d4e642598)) + - Timeout in RuntimeExecutor is now set from Application configuration ([9d0fb02](http://github.com/jcgay/send-notification/commit/9d0fb0226df88cba08a9549f4ded2150052b3134)) + - Do not set a default app activation for terminal-notifier ([61f142f](http://github.com/jcgay/send-notification/commit/61f142f0940542117a3494e034bb723797337faf)) +- Upgrade to Gradle 4.3 ([15e915c](http://github.com/jcgay/gradle-notifier/commit/15e915c57d2a7d27b10667d383926d56a8ab7c92)) + # 2.0.0 *** diff --git a/README.md b/README.md index 8d3b628..a81ded7 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ initscript { } dependencies { - classpath group: 'fr.jcgay', name: 'gradle-notifier', version: '2.0.0' + classpath group: 'fr.jcgay', name: 'gradle-notifier', version: '2.1.0' } } @@ -45,7 +45,7 @@ buildscript { } dependencies { - classpath group: 'fr.jcgay', name: 'gradle-notifier', version: '2.0.0' + classpath group: 'fr.jcgay', name: 'gradle-notifier', version: '2.1.0' } } @@ -124,7 +124,7 @@ notifier { ``` `notifier.threshold` allows to bypass notification when the build ends before the configured threshold. -`notifier.continuousNotify` activate notifications for continuous build (using `--continuous` or `-t`). +`notifier.continuousNotify` activate notifications for continuous build (using `--continuous` or `-t`). `notifier.timeout` configures the time Gradle will wait to communicate with a notifier. All parameters are configured by default, if you're fine with it, no need to write them down.