From 0add6800eba55e31c567fc5a4fbfc5bd4cf4950b Mon Sep 17 00:00:00 2001 From: ojaynico Date: Tue, 8 Jun 2021 10:18:05 +0300 Subject: [PATCH] Updated library versions --- README.md | 6 +++--- build.gradle.kts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 83320f9..ea42474 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.4/pom) -[![Kotlin](https://img.shields.io/badge/kotlin-1.5.0-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.0.5/pom) +[![Kotlin](https://img.shields.io/badge/kotlin-1.5.10-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.0.4") + implementation("com.github.ojaynico:ojaynico-kotlin-react-native-async-storage:1.0.5") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 2e16c92..7af1b7f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,12 +1,12 @@ plugins { - kotlin("js") version "1.5.0" + kotlin("js") version "1.5.10" id("maven-publish") id("io.codearte.nexus-staging") version "0.30.0" signing } group = "com.github.ojaynico" -version = "1.0.4" +version = "1.0.5" val artifactName = project.name val artifactGroup = project.group.toString() @@ -43,7 +43,7 @@ repositories { dependencies { implementation(kotlin("stdlib-js")) - implementation(npm("@react-native-async-storage/async-storage", "1.15.2")) + implementation(npm("@react-native-async-storage/async-storage", "1.15.5")) } val sourcesJar by tasks.registering(Jar::class) {