Skip to content

Commit

Permalink
One more changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed Jul 17, 2024
1 parent 6c708f2 commit 1e36cb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Added support for NAACCR 25.
- Added support for new specification version 1.8 (added support for new dateTime type).
- Re-compiled SAS library under Java 8; it is no longer compatible with Java 7.

**Version 10.2**

Expand Down
6 changes: 3 additions & 3 deletions gradle/sas.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// this gradle file is used to create Java-7 compliant code to be used with SAS.
// this gradle file is used to create Java-8 compliant code to be used with SAS.

sourceSets {
sas {
Expand All @@ -19,8 +19,8 @@ sourceSets {
}

compileSasJava {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

tasks.register('jarSas', Jar) {
Expand Down

0 comments on commit 1e36cb1

Please sign in to comment.