Skip to content

Commit

Permalink
Try relax strip profile for release-full, bump to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
delneg committed Jan 19, 2024
1 parent e5e3542 commit 9743bd5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swisstronik-rust-swift-kotlin"
version = "1.0.1"
version = "1.0.2"
authors = ["Denis <[email protected]", "Mike <[email protected]"]
edition = "2021"

Expand Down Expand Up @@ -33,7 +33,7 @@ protobuf-codegen = "3.2.0"

[profile.release-full]
inherits = "release"
strip = true # https://doc.rust-lang.org/cargo/reference/profiles.html#strip
strip = "debuginfo" # https://doc.rust-lang.org/cargo/reference/profiles.html#strip
opt-level = "s" # Optimize for size.
lto = "fat" # https://doc.rust-lang.org/cargo/reference/profiles.html#lto
codegen-units = 1 # https://doc.rust-lang.org/cargo/reference/profiles.html#codegen-units
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
],
targets: [
.binaryTarget(name: "SwisstronikRust",
url: "https://github.com/SigmaGmbH/swisstronik-rust-swift-kotlin/releases/download/v1.0.1/SwisstronikRust.xcframework.zip",
url: "https://github.com/SigmaGmbH/swisstronik-rust-swift-kotlin/releases/download/v1.0.2/SwisstronikRust.xcframework.zip",
checksum: "63c5f8767e0504730d7829e05074bf703a5e54be1be1a111877f9961c4887513"
),
.target(
Expand Down
4 changes: 2 additions & 2 deletions kotlin/swisstronik-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ publishing {
release(MavenPublication) {
groupId = 'com.swisstronik'
artifactId = 'kotlin'
version = '1.0.1'
version = '1.0.2'

afterEvaluate {
from components.release
Expand All @@ -36,7 +36,7 @@ android {
targetSdkVersion 33
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
versionCode 1
versionName "1.0.1"
versionName "1.0.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit 9743bd5

Please sign in to comment.