Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/4.0.4 #173

Merged
merged 2 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
fail-fast: false
matrix:
include:
- compile: 35
target: 34
appcompat: 1.6.1
- compile: 34
target: 34
appcompat: 1.6.1
Expand All @@ -58,7 +61,7 @@ jobs:
target: 32
appcompat: 1.4.2
- compile: 34
target: 30
target: 31
appcompat: 1.3.1
- compile: 34
target: 30
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 4.0.4

= Downgrade: jackson-databind to 2.13.* (#170)

# 4.0.3

- Upgrade: third-party dependencies (lombok, jackson-databind) (#167)
Expand Down
6 changes: 3 additions & 3 deletions compose-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ plugins {

android {
namespace 'com.hcaptcha.compose'
compileSdk 34
compileSdk 35

defaultConfig {
minSdk 23

// See https://developer.android.com/studio/publish/versioning
// versionCode must be integer and be incremented by one for every new update
// android system uses this to prevent downgrades
versionCode 42
versionCode 43

// version number visible to the user
// should follow semantic versioning (See https://semver.org)
versionName "4.0.3"
versionName "4.0.4"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
4 changes: 2 additions & 2 deletions example-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ def prop(name, fallback) {
}

android {
compileSdk intProp("exampleCompileSdkVersion", 34)
compileSdk intProp("exampleCompileSdkVersion", 35)
namespace 'com.hcaptcha.example'

defaultConfig {
minSdkVersion 23
targetSdkVersion intProp("exampleTargetSdkVersion", 34)
targetSdkVersion intProp("exampleTargetSdkVersion", 35)
versionCode 1
versionName "0.0.1"

Expand Down
4 changes: 2 additions & 2 deletions example-compose-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ def intProp(name, fallback) {
}

android {
compileSdk intProp("exampleCompileSdkVersion", 34)
compileSdk intProp("exampleCompileSdkVersion", 35)
namespace 'com.hcaptcha.example.compose'

defaultConfig {
minSdkVersion 23
targetSdkVersion intProp("exampleTargetSdkVersion", 34)
targetSdkVersion intProp("exampleTargetSdkVersion", 35)
versionCode 1
versionName "0.0.1"

Expand Down
8 changes: 4 additions & 4 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {
}

android {
compileSdk 34
compileSdk 35
namespace 'com.hcaptcha.sdk'

buildFeatures {
Expand All @@ -23,16 +23,16 @@ android {

defaultConfig {
minSdkVersion 16
targetSdkVersion 34
targetSdkVersion 35

// See https://developer.android.com/studio/publish/versioning
// versionCode must be integer and be incremented by one for every new update
// android system uses this to prevent downgrades
versionCode 42
versionCode 43

// version number visible to the user
// should follow semantic versioning (See https://semver.org)
versionName "4.0.3"
versionName "4.0.4"

buildConfigField 'String', 'VERSION_NAME', "\"${defaultConfig.versionName}_${defaultConfig.versionCode}\""

Expand Down
Loading