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

Upgraded kotlin to 1.9.22 and other dependencies #23

Merged
merged 2 commits into from
Feb 27, 2024
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![kodeview_banner_opaque](https://github.com/SnipMeDev/KodeView/assets/8405055/59c6a2af-1b32-4a02-998f-ecae2296363a)

[![Maven Central](https://img.shields.io/maven-central/v/dev.snipme/kodeview)](https://mvnrepository.com/artifact/dev.snipme)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)

# KodeView
Expand All @@ -21,7 +21,7 @@ repositories {
```

```shell
implementation("dev.snipme:kodeview:0.8.0")
implementation("dev.snipme:kodeview:0.9.0")
```

## Features ✨
Expand Down
2 changes: 1 addition & 1 deletion androidExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
compileSdk = 34

defaultConfig {
minSdk = 24
minSdk = 25

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[versions]
jvmTarget = "1.8"
gradlePlugin = "8.1.0"
kotlin = "1.9.21"
kotlin = "1.9.22"
ksp = "1.8.10-1.0.9"
kotlinCompilerExtensionVersion = "1.5.3"
kotlinAndroid = "1.9.21"
kotlinMultiplatform = "1.9.21"
compose = "1.5.11"
kotlinAndroid = "1.9.22"
kotlinMultiplatform = "1.9.22"
compose = "1.5.12"
androidLibrary = "8.1.1"
kodeview = "0.8.0"
highlights = "0.7.1"
highlights = "0.8.0"
composeMaterial = "1.2.1"

[libraries]
Expand Down
4 changes: 2 additions & 2 deletions kodeview/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ plugins {
}

group = "dev.snipme"
version = "0.8.0"
version = "0.9.0"

android {
namespace = "dev.snipme.kodeview"
compileSdk = 34

defaultConfig {
minSdk = 21
minSdk = 25
}
}
dependencies {
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ pluginManagement {
}

plugins {
val kotlinVersion = "1.9.21"
val kotlinVersion = "1.9.22"
val agpVersion = "8.1.1"
val composeVersion = "1.5.11"
val composeVersion = "1.5.12"

kotlin("jvm").version(kotlinVersion)
kotlin("multiplatform").version(kotlinVersion)
Expand Down