From 05ca297c8e88a0c4ef0a26f56209f725c4b47bdb Mon Sep 17 00:00:00 2001 From: ojaynico Date: Fri, 6 May 2022 18:09:27 +0300 Subject: [PATCH] - Updated Kotlin to version 1.6.20 - Updated async to v 1.17.3 --- README.md | 6 +++--- build.gradle.kts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 61c00f7..75bff1d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ojaynico-kotlin-react-native-async-storage -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native-async-storage/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native-async-storage/1.0.9/pom) -[![Kotlin](https://img.shields.io/badge/kotlin-1.6.10-blue.svg?logo=kotlin)](http://kotlinlang.org) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native-async-storage/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native-async-storage/1.1.1/pom) +[![Kotlin](https://img.shields.io/badge/kotlin-1.6.20-blue.svg?logo=kotlin)](http://kotlinlang.org) [![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react) [![Kotlin JS IR supported](https://img.shields.io/badge/Kotlin%2FJS-IR%20supported-yellow)](https://kotl.in/jsirsupported) @@ -36,7 +36,7 @@ repositories { } dependencies { - implementation("com.github.ojaynico:ojaynico-kotlin-react-native-async-storage:1.1.0") + implementation("com.github.ojaynico:ojaynico-kotlin-react-native-async-storage:1.1.1") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index cfd3435..7a11cb9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,12 +1,12 @@ plugins { - kotlin("js") version "1.6.10" + kotlin("js") version "1.6.20" id("maven-publish") id("io.codearte.nexus-staging") version "0.30.0" signing } group = "com.github.ojaynico" -version = "1.1.0" +version = "1.1.1" val artifactName = project.name val artifactGroup = project.group.toString() @@ -41,7 +41,7 @@ repositories { } dependencies { - implementation(npm("@react-native-async-storage/async-storage", "1.16.0")) + implementation(npm("@react-native-async-storage/async-storage", "1.17.3")) } val sourcesJar by tasks.registering(Jar::class) {