From d87b241e3724db4cd93d5f3183dc10f2b002eb36 Mon Sep 17 00:00:00 2001 From: Jurgen Date: Mon, 20 May 2019 15:35:38 +0200 Subject: [PATCH] Version 0.10.1 Release --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 12 ++++++------ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c4d03074..6418c8e8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [v0.10.1](https://github.com/FXMisc/RichTextFX/tree/v0.10.1) (2019-05-20) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.0...v0.10.1) + +**Implemented enhancements:** + +- Changed page up and down behaviour [\#688](https://github.com/FXMisc/RichTextFX/issues/688) +- Remove deprecated methods [\#818](https://github.com/FXMisc/RichTextFX/issues/818) + +**Fixed bugs:** + +- Bug: CodeArea caretBounds graphic bug [\#812](https://github.com/FXMisc/RichTextFX/issues/812) +- Bug: Undo after deleting styled text causes exception [\#815](https://github.com/FXMisc/RichTextFX/issues/815) + +**Merged pull requests:** + +- Enhancement: Changed page up and down behaviour [\#821](https://github.com/FXMisc/RichTextFX/pull/821) ([Jurgen Doll](https://github.com/Jugen)) +- Fix bug: Fix Paragraph returning incorrectly styled subsequence [\#817](https://github.com/FXMisc/RichTextFX/pull/817) ([Jugen](https://github.com/Jugen)) +- Fix bug: Fix for #812 caretBounds graphic bug [\#819 and \#822](https://github.com/FXMisc/RichTextFX/pull/819) ([Jugen](https://github.com/Jugen)) + ## [v0.10.0](https://github.com/FXMisc/RichTextFX/tree/v0.10.0) (2019-04-18) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.3...v0.10.0) diff --git a/README.md b/README.md index 528fdff5f..a605518b2 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.10.0](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html) + * [0.10.1](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -143,31 +143,31 @@ Download ### Stable release -Current stable release is 0.10.0 which is a multi-release JAR that is compatible with Java 9 and UP without the need for `add-exports` or `add-opens` JVM arguments. +Current stable release is 0.10.1 which is a multi-release JAR that is compatible with Java 9 and UP without the need for `add-exports` or `add-opens` JVM arguments. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.10.0 | +| org.fxmisc.richtext | richtextfx | 0.10.1 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.0' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.1' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.0" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.1" ``` #### Manual download -Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.0/richtextfx-0.10.0.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.0/richtextfx-fat-0.10.0.jar) and place it on your classpath. +Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.1/richtextfx-0.10.1.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.1/richtextfx-fat-0.10.1.jar) and place it on your classpath. ### Snapshot releases