Skip to content

Commit cd14868

Browse files
committed
chore: update version to 1.8.3
1 parent c620793 commit cd14868

11 files changed

Lines changed: 109 additions & 9 deletions

File tree

.github/art/header.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.
702 KB
Loading

.github/art/sentinel-header.png

1.16 MB
Loading

.github/release.yml

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
changelog:
2+
categories:
3+
- title: 'New Features'
4+
labels:
5+
- 'enhancement'
6+
- 'feature'
7+
- 'feat'
8+
9+
- title: 'Bug Fixes'
10+
labels:
11+
- 'bug'
12+
- 'fix'
13+
14+
- title: 'Documentation'
15+
labels:
16+
- 'documentation'
17+
- 'docs'
18+
19+
- title: 'Performance Improvements'
20+
labels:
21+
- 'performance'
22+
- 'perf'
23+
24+
- title: 'Tests'
25+
labels:
26+
- 'test'
27+
- 'tests'
28+
29+
- title: 'Refactoring'
30+
labels:
31+
- 'refactor'
32+
- 'refactoring'
33+
34+
- title: 'Build & CI/CD'
35+
labels:
36+
- 'build'
37+
- 'ci'
38+
- 'cd'
39+
40+
- title: 'Maintenance & Chores'
41+
labels:
42+
- 'chore'
43+
- 'maintenance'
44+
- 'dependencies'
45+
- 'task'
46+
47+
exclude:
48+
labels:
49+
- 'ignore'
50+
- 'skip-changelog'
51+
- 'no-changelog'
52+
authors:
53+
- 'dependabot'
54+
- 'dependabot[bot]'
55+
56+
autolabeler:
57+
- label: 'feat'
58+
title:
59+
- '/^feat(\(.*\))?:/i'
60+
- label: 'fix'
61+
title:
62+
- '/^fix(\(.*\))?:/i'
63+
- label: 'docs'
64+
title:
65+
- '/^docs(\(.*\))?:/i'
66+
- '/^update:.*README/i'
67+
- label: 'perf'
68+
title:
69+
- '/^perf(\(.*\))?:/i'
70+
- label: 'test'
71+
title:
72+
- '/^test(\(.*\))?:/i'
73+
- label: 'refactor'
74+
title:
75+
- '/^refactor(\(.*\))?:/i'
76+
- label: 'build'
77+
title:
78+
- '/^build(\(.*\))?:/i'
79+
- label: 'chore'
80+
title:
81+
- '/^chore(\(.*\))?:/i'
82+
- '/^update:/i'
83+
84+
template: |
85+
## What's Changed
86+
87+
$CHANGES
88+
89+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$CURRENT_TAG
90+
91+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
92+
include-contributors: true
93+
hide-categories-without-changes: true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_PASSPHRASE }}
4646

4747
- name: Create GitHub Release
48-
uses: softprops/action-gh-release@v1
48+
uses: softprops/action-gh-release@v2
4949
with:
5050
name: Release ${{ github.ref_name }}
5151
generate_release_notes: true

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![Android](https://img.shields.io/badge/Android-000000?style=for-the-badge&logo=android&logoColor=ffffff)](https://developer.android.com/)
1010
[![iOS](https://img.shields.io/badge/iOS-000000?style=for-the-badge&logo=apple&logoColor=ffffff)](https://developer.apple.com/)
1111
[![klibs](https://img.shields.io/badge/klibs-000000?style=for-the-badge&logo=kotlin&logoColor=ffffff)](https://klibs.io/project/rexiox/sentinel)
12-
[![Version](https://img.shields.io/badge/1.8.2-000000?style=for-the-badge&logo=stackblitz&logoColor=ec141e)](#)
12+
[![Version](https://img.shields.io/badge/1.8.3-000000?style=for-the-badge&logo=stackblitz&logoColor=ec141e)](#)
1313

1414
**Sentinel** is a lightweight, modular Kotlin Multiplatform security toolkit designed to analyze
1515
runtime environments and detect potential security threats in real time on both Android and iOS.
@@ -92,7 +92,7 @@ against multiple threat types.
9292
## Quick Start
9393

9494
```gradle
95-
implementation("co.rexiox:sentinel:1.8.2")
95+
implementation("co.rexiox:sentinel:1.8.3")
9696
```
9797

9898
You can use the following method to print the appId and appIntegrity values required for your
@@ -241,7 +241,7 @@ suspicious activities in real-time and reports these threats.
241241
https://github.com/user-attachments/assets/acfb35ac-61c4-492e-ae42-a7576f2badb1
242242

243243
```gradle
244-
implementation("co.rexiox:sentinel-monitor:1.8.2")
244+
implementation("co.rexiox:sentinel-monitor:1.8.3")
245245
```
246246

247247
```kotlin

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Only the latest stable release of Sentinel receives security fixes.
77
| Version | Supported |
88
|---------|-----------|
99
| 1.8.x | ✅ Yes |
10-
| < 1.8.2 | ❌ No |
10+
| < 1.8.3 | ❌ No |
1111

1212
## Reporting a Vulnerability
1313

build-logic/src/main/kotlin/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ object Config {
66

77
const val MIN_SDK = 24
88
const val COMPILE_SDK = 36
9-
const val NAME = "1.8.2"
9+
const val NAME = "1.8.3"
1010
}
1111

1212
object Publishing {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ kotlinxBenchmarkRuntime = "0.4.16"
77
kotlinxCoroutinesCore = "1.10.2"
88
kotlinxDatetime = "0.7.1"
99
materialIconsCore = "1.7.3"
10-
sentinel = "1.8.2"
10+
sentinel = "1.8.3"
1111
vanniktechMavenPublish = "0.34.0"
1212
androidx-lifecycle = "2.10.0"
1313
composeMultiplatform = "1.10.3"

sample/multiplatform/composeApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
minSdk = 24
6262
targetSdk = 36
6363
versionCode = 8
64-
versionName = "1.8.2"
64+
versionName = "1.8.3"
6565
}
6666

6767
packaging {

0 commit comments

Comments
 (0)