Skip to content

Commit

Permalink
It's targetCompatibility not targetCompitability
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre601 committed Dec 15, 2019
1 parent e2f844f commit 00bbf0f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ plugins{
project.group = "com.andre601"
project.version = "3.0.5"

sourceCompatibility = targetCompitability = 1.8
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

jar{
baseName = 'JavaBotBlockAPI'
Expand Down
13 changes: 8 additions & 5 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Versions marked with a `*` are not available on bintray!

## v3

- ### v3.0.0
Expand All @@ -21,22 +23,23 @@
- ### v3.0.1
- Deprecated `Site.DISCORDBOTS_ORG`. Use `Site.TOP_GG` instead.

- ### v3.0.2
- **This update is not available on bintray!**
- ### v3.0.2*
- Dependencies updated:
- JDA: `4.0.0_61` to `4.0.0_70`

- ### v3.0.3
- Same changes as [v3.0.2](#v302)

- ### v3.0.4
- **This update is not available on bintray!**
- ### v3.0.4*
- RequestHandler was removed
- Dependencies updated:
- JDA: `4.0.0_70` to `4.0.0_73`

- ### v3.0.5
- ### v3.0.5*
- Fixed broken build.gradle

- ### v3.0.6
- It's `targetCompatibility` not `targetCompitability`
____
## v2

Expand Down

0 comments on commit 00bbf0f

Please sign in to comment.