From 85dd972746c4e7ac8b2917810b8b42d5d14829be Mon Sep 17 00:00:00 2001 From: Jurgen Date: Fri, 18 Aug 2023 15:06:41 +0200 Subject: [PATCH] Version 0.11.1 Release --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 12 ++++++------ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87154e9e..8012c81d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [v0.11.1](https://github.com/FXMisc/RichTextFX/tree/v0.11.1) (2023-08-18) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.11.0...v0.11.1) + +**Implemented enhancements:** + +- Bump Junit to 4.13.2 +- Bumped Flowless to 0.7.1 +- Added isFolded API [\#1156](https://github.com/FXMisc/RichTextFX/pull/1156) + +**Fixed bugs:** + +- Prevent pom from containing JavaFX dependencies [\#1155](https://github.com/FXMisc/RichTextFX/pull/1155) +- Fixed InputMethodRequest recursive call [\#1165](https://github.com/FXMisc/RichTextFX/pull/1165) +- Fixed prefHeight calc and layout for no wrap [\#1169](https://github.com/FXMisc/RichTextFX/pull/1169) + +**Notes from Flowless 0.7.1:** + +- Minor update with small change to SizeTracker, catching IOOB & NoSuchElement exceptions. + ## [v0.11.0](https://github.com/FXMisc/RichTextFX/tree/v0.11.0) (2022-11-14) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.9...v0.11.0) diff --git a/README.md b/README.md index 335a4740..dcb250d3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.11.0](http://fxmisc.github.io/richtext/javadoc/0.11.0/index.html?org/fxmisc/richtext/package-summary.html) + * [0.11.1](http://fxmisc.github.io/richtext/javadoc/0.11.1/index.html?org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -152,31 +152,31 @@ Download ### Stable release -Current stable release is 0.11.0. which is ONLY compatible with Java 11 and UP without the need for `add-exports` or `add-opens` JVM arguments. +Current stable release is 0.11.1. which is ONLY compatible with Java 11 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.11.0 | +| org.fxmisc.richtext | richtextfx | 0.11.1 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.11.0' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.11.1' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.0" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.1" ``` #### Manual download -Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.0/richtextfx-0.11.0.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.0/richtextfx-fat-0.11.0.jar) and place it on your classpath. +Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.1/richtextfx-0.11.1.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.1/richtextfx-fat-0.11.1.jar) and place it on your classpath. ### Snapshot releases