Skip to content

Commit

Permalink
Merge pull request #30 from saschpe/android13-api33
Browse files Browse the repository at this point in the history
Android: Target API level 33 / Android 13
  • Loading branch information
saschpe authored Oct 12, 2022
2 parents 633c699 + 92723a7 commit 979cf89
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .idea/runConfigurations/build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion .idea/runConfigurations/dependencyUpdates.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.2.3] - 2022-10-12
### Changed
- Android: Target API level 33 (Android 13)
- Dependency update:
- [Android Gradle Plugin 7.2.2](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)
- [Android Gradle Plugin 7.3.0](https://developer.android.com/studio/releases/gradle-plugin#7-3-0)
- [Gradle 7.5.1](https://docs.gradle.org/7.5.1/release-notes.html)
- [Kotlin 1.7.20](https://kotlinlang.org/docs/whatsnew1720.html)
### Removed
- Stop building frameworks, they aren't published by default

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
}

dependencies {
implementation("de.peilicke.sascha:log4k:1.2.2")
implementation("de.peilicke.sascha:log4k:1.2.3")
}
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
kotlin("jvm") version "1.7.10"
id("com.android.library") version "7.2.2" apply false
id("com.diffplug.spotless") version "6.9.0"
kotlin("jvm") version "1.7.20"
id("com.android.library") version "7.3.0" apply false
id("com.diffplug.spotless") version "6.11.0"
id("com.github.ben-manes.versions") version "0.42.0"
}

Expand Down
6 changes: 3 additions & 3 deletions log4k-slf4j/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ kotlin {

android {
buildToolsVersion = "33.0.0"
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 17
targetSdk = 32
targetSdk = 33
}

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
Expand All @@ -60,7 +60,7 @@ android {
}

group = "de.peilicke.sascha"
version = "1.2.2"
version = "1.2.3"

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
Expand Down
6 changes: 3 additions & 3 deletions log4k/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ kotlin {

android {
buildToolsVersion = "33.0.0"
compileSdk = 32
compileSdk = 33

defaultConfig {
minSdk = 17
targetSdk = 32
targetSdk = 33
}

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
Expand All @@ -51,7 +51,7 @@ android {
}

group = "de.peilicke.sascha"
version = "1.2.2"
version = "1.2.3"

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
Expand Down

0 comments on commit 979cf89

Please sign in to comment.