diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b02c85..a371e69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.1] - 2026-08-25 + +- Android SDK version: 19.2.3 +- iOS SDK version: 7.1.2 + +### Android + +#### Fixed + +- Fixed the reporting issue in root detection +- Fixed the reporting issue in hook detection + ## [2.1.0] - 2026-08-07 - Android SDK version: 19.2.1 diff --git a/library/build.gradle.kts b/library/build.gradle.kts index c929066..7cf692e 100644 --- a/library/build.gradle.kts +++ b/library/build.gradle.kts @@ -19,7 +19,7 @@ fun getVariable(name: String): String { group = "com.aheaditec.talsec.security" -version = "2.1.0" +version = "2.1.1" kotlin { targets.all { compilations.all { @@ -77,7 +77,7 @@ kotlin { languageSettings.optIn("kotlin.ExperimentalMultiplatform") dependencies{ - implementation("com.aheaditec.talsec.security:TalsecSecurity-Community-KMP:19.2.1") + implementation("com.aheaditec.talsec.security:TalsecSecurity-Community-KMP:19.2.3") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0") implementation("androidx.startup:startup-runtime:1.2.0") implementation("androidx.annotation:annotation:1.9.1")