Skip to content

Commit

Permalink
Version 0.10.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurgen committed May 20, 2019
1 parent e3f6844 commit d87b241
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.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)

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.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)

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

Expand Down

0 comments on commit d87b241

Please sign in to comment.