Skip to content

Commit

Permalink
dev: Set library version to Java 17.
Browse files Browse the repository at this point in the history
  • Loading branch information
Day-Hawk committed Aug 28, 2023
1 parent 35c4ade commit 785e128
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ maven {
}
//Dependency
implementation 'dev.dotspace:common:1.0.8'
implementation 'dev.dotspace:common:1.0.8.3'
```

> Maven:
Expand All @@ -49,7 +49,7 @@ implementation 'dev.dotspace:common:1.0.8'
<dependency>
<groupId>dev.dotspace</groupId>
<artifactId>common</artifactId>
<version>1.0.8</version>
<version>1.0.8.3</version>
</dependency>
```
---
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {
}

group 'dev.dotspace'
version '1.0.8'
version '1.0.8.3'

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

allprojects {
ext {
Expand Down

0 comments on commit 785e128

Please sign in to comment.