Skip to content

Commit

Permalink
Preparing for release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed Mourad committed Feb 15, 2024
1 parent 08dd818 commit 840e750
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 12 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========

0.8.0
-----

_2024-02-15_

- Upgraded to Kotlinx-Serialization 1.6.2
- Upgraded to Kotlin 1.9.22
- Upgraded to Android Gradle Plugin 8.2.2
- Upgraded to Gradle 8.2
- Upgraded to Java 19 JVM target

0.7.0
-----

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ repositories {
}
dependencies {
implementation "dev.ahmedmourad.bundlizer:bundlizer-core:0.7.0"
implementation "dev.ahmedmourad.bundlizer:bundlizer-core:0.8.0"
}
```

Expand All @@ -92,4 +92,3 @@ License
limitations under the License.

[snapshots]: https://oss.sonatype.org/content/repositories/snapshots/

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
buildscript {
ext {
kotlin_version = "1.6.20"
maven_publish_plugin_version = "0.19.0"
kotlin_version = "1.9.22"
maven_publish_plugin_version = "0.27.0"
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "com.android.tools.build:gradle:8.2.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "com.vanniktech:gradle-maven-publish-plugin:$maven_publish_plugin_version"
Expand Down
16 changes: 12 additions & 4 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ apply plugin: "kotlinx-serialization"
apply plugin: "com.vanniktech.maven.publish"

android {
compileSdkVersion 32
compileSdk 34
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
targetSdkVersion 34
versionCode 1
versionName "1.0"
namespace "dev.ahmedmourad.bundlizer"
}
buildTypes {
release {
Expand All @@ -22,11 +23,18 @@ android {
includeAndroidResources = true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_19
targetCompatibility JavaVersion.VERSION_19
}
kotlinOptions {
jvmTarget = '19'
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-core:1.3.2"
testImplementation "org.robolectric:robolectric:4.3.1"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-core:1.6.2"
testImplementation "org.robolectric:robolectric:4.11.1"
testImplementation "junit:junit:4.13.2"
}
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
GROUP=dev.ahmedmourad.bundlizer
VERSION_NAME=0.7.0
VERSION_NAME=0.8.0
POM_DESCRIPTION=Android Bundle format support for Kotlinx Serialization.
POM_URL=https://github.com/AhmedMourad0/bundlizer/
POM_SCM_URL=https://github.com/AhmedMourad0/bundlizer/
Expand All @@ -32,4 +32,3 @@ POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=AhmedMourad
POM_DEVELOPER_NAME=Ahmed Mourad
POM_DEVELOPER_URL=https://www.ahmedmourad.dev

2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Apr 08 02:59:57 EET 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 840e750

Please sign in to comment.