diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ad804e..ecf3b5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Backtrace Java Release Notes +## Version 0.9.6 - 24.05.2023 +- Update dependencies (GSON and slf4j-api) + ## Version 0.9.5 - 03.08.2022 - Fix null attributes - Fix gson reflection bug diff --git a/build.gradle b/build.gradle index a983674..0537fcf 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { apply from: 'publish.gradle' group = 'com.github.backtrace.io' -version = '0.9.5' +version = '0.9.6' repositories { mavenCentral() @@ -17,10 +17,10 @@ test { } dependencies { - implementation 'com.google.code.gson:gson:2.9.0' + implementation 'com.google.code.gson:gson:2.10.1' // This dependency is used internally, and not exposed to consumers on their own compile classpath. implementation 'com.google.guava:guava:31.1-jre' - implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36' + implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.7' // Use JUnit test framework testImplementation 'junit:junit:4.13.2' testImplementation 'org.powermock:powermock-core:2.0.9' diff --git a/gradle.properties b/gradle.properties index 74724b7..18e73d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.9.5 +VERSION_NAME=0.9.6 GROUP=com.github.backtrace-labs.backtrace-java