Skip to content

Commit

Permalink
Version 0.6.9 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Feb 24, 2022
1 parent 1f32ed8 commit 3775a6c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [v0.6.9](https://github.com/FXMisc/Flowless/tree/v0.6.9) (2022-02-24)
[Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.8...v0.6.9)

- Fix thin lines between cells [\#105](https://github.com/FXMisc/Flowless/pull/105)
- Fix thin lines between cells 2 [\#105](https://github.com/FXMisc/Flowless/pull/106)

## [v0.6.8](https://github.com/FXMisc/Flowless/tree/v0.6.8) (2022-01-27)
[Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.7...v0.6.8)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,25 +75,25 @@ Include Flowless in your project

| Group ID | Artifact ID | Version |
| :---------: | :---------: | :-----: |
| org.fxmisc.flowless | flowless | 0.6.8 |
| org.fxmisc.flowless | flowless | 0.6.9 |

#### Gradle example

```groovy
dependencies {
implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.8'
implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.9'
}
```

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.6.8"
libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.6.9"
```

#### Manual download

Download the [0.6.8 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.6.8) and place it on your classpath.
Download the [0.6.9 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.6.9) and place it on your classpath.

Documentation
-------------
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ plugins {
id 'signing'
}

version = '0.6.8-SNAPSHOT'
version = '0.6.9-SNAPSHOT'

repositories {
mavenCentral()
}

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
sourceCompatibility = '1.9'
targetCompatibility = '1.9'

group = 'org.fxmisc.flowless'
project.archivesBaseName = 'flowless'
Expand Down

0 comments on commit 3775a6c

Please sign in to comment.