diff --git a/CHANGELOG.md b/CHANGELOG.md index 559ec3694..0c4d03074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [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) + +**Implemented enhancements:** + +- RichTextFX with Java 11 [\#776](https://github.com/FXMisc/RichTextFX/issues/776) + +**Fixed bugs:** + +- Bug: Lines sometimes overlap when one wraps by a small amount [\#809](https://github.com/FXMisc/RichTextFX/issues/809) + +**Merged pull requests:** + +- Enhancement: Mrjar config and source [\#804](https://github.com/FXMisc/RichTextFX/pull/804) ([Jurgen Doll](https://github.com/Jugen)) +- Fix bug: Fix height paragraph box height calculation [\#810](https://github.com/FXMisc/RichTextFX/pull/810) ([Chris Smith](https://github.com/csmith)) + ## [v0.9.3](https://github.com/FXMisc/RichTextFX/tree/v0.9.3) (2019-03-01) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.2...v0.9.3) diff --git a/README.md b/README.md index b10e35667..528fdff5f 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.9.3](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html) + * [0.10.0](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.9.3. +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. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.9.3 | +| org.fxmisc.richtext | richtextfx | 0.10.0 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.9.3' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.0' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.9.3" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.0" ``` #### Manual download -Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.3/richtextfx-0.9.3.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.3/richtextfx-fat-0.9.3.jar) and place it on your classpath. +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. ### Snapshot releases