From 2af2995981180fcd2c6d19405c888f0c895a31ba Mon Sep 17 00:00:00 2001 From: Ryan O'Meara Date: Wed, 17 Jan 2024 22:39:13 -0500 Subject: [PATCH] Update to ASM library 9.6 --- CHANGE_LOG.md | 4 ++++ method-analyzer-core/build.gradle | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGE_LOG.md b/CHANGE_LOG.md index 3fa3b85..6d6a301 100644 --- a/CHANGE_LOG.md +++ b/CHANGE_LOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Changed +- Updated `org.ow2.asm:asm` from `9.5` to `9.6` + +## [0.2.6] +### Changed - Updated `org.ow2.asm:asm` from `9.3` to `9.5` - Updated `com.google.code.gson:gson` from `2.9` to `2.10.1` - Updated override of `org.yaml:snakeyaml` transitive dependency from `1.30` to `1.33` diff --git a/method-analyzer-core/build.gradle b/method-analyzer-core/build.gradle index 708dce1..34bb068 100644 --- a/method-analyzer-core/build.gradle +++ b/method-analyzer-core/build.gradle @@ -9,7 +9,7 @@ dependencies { compileOnly 'com.google.code.findbugs:jsr305:3.0.2' api 'com.google.guava:guava:31.1-jre' - api 'org.ow2.asm:asm:9.5' + api 'org.ow2.asm:asm:9.6' implementation 'com.google.code.gson:gson:2.10.1' implementation 'org.slf4j:slf4j-api:1.7.36'