Skip to content

Commit

Permalink
Version 0.11.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Aug 18, 2023
1 parent 682242b commit 85dd972
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 85dd972

Please sign in to comment.