Skip to content

Commit

Permalink
Merge pull request #15 from saschpe/apple-targets-arm
Browse files Browse the repository at this point in the history
Apple targets arm
  • Loading branch information
saschpe authored Sep 14, 2023
2 parents 3caf1a4 + aa31be3 commit 7fe1cd0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2023-09-14
### Changed
- Apple: Add targets for `tvOS` and `watchOS` and `macOS`
- Dependency update:
- [Gradle-8.3](https://docs.gradle.org/8.3/release-notes.html)

## [1.0.7] - 2023-09-07
### Changed
- Android: Compile with API level 33 / Android 13
- Apple: Add targets for `tvOS` and `watchOS` and `macOS` x64 builds
- Dependency update:
- [Android Gradle Plugin 8.1.0-rc01](https://developer.android.com/studio/releases/gradle-plugin#7-2-0)
- [Gradle-7.5.1](https://docs.gradle.org/7.5.1/release-notes.html)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
}

dependencies {
implementation("de.peilicke.sascha:kase64:1.0.7")
implementation("de.peilicke.sascha:kase64:1.1.0")
}
```

Expand Down
6 changes: 3 additions & 3 deletions kase64/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ kotlin {
macosArm64()
macosX64()
mingwX64() // Win-what ?!?
tvos()
watchos()
tvosArm64()
watchosArm64()

sourceSets["commonTest"].dependencies {
implementation(kotlin("test"))
Expand All @@ -45,7 +45,7 @@ android {
}

group = "de.peilicke.sascha"
version = "1.0.7"
version = "1.1.0"

publishing {
publications.withType<MavenPublication> {
Expand Down

0 comments on commit 7fe1cd0

Please sign in to comment.