Skip to content

Commit

Permalink
Bump version, add lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sandwwraith committed May 11, 2022
1 parent fb02e66 commit 984345b
Show file tree
Hide file tree
Showing 4 changed files with 568 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -4,7 +4,7 @@
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![TeamCity build](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/KotlinTools_KotlinxSerialization_Ko.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxSerialization_Ko&guest=1)
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.2)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.2/pom)
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.3)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.3/pom)
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlin.github.io/kotlinx.serialization/)
[![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/serialization/)

Expand Down Expand Up @@ -155,7 +155,7 @@ repositories {
}

dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3")
}
```

Expand All @@ -167,7 +167,7 @@ repositories {
}
dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3"
}
```

Expand Down Expand Up @@ -286,7 +286,7 @@ Ensure the proper version of Kotlin and serialization version:
```xml
<properties>
<kotlin.version>1.6.10</kotlin.version>
<serialization.version>1.3.2</serialization.version>
<serialization.version>1.3.3</serialization.version>
</properties>
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Expand Up @@ -3,9 +3,9 @@
#

group=org.jetbrains.kotlinx
version=1.3.3-SNAPSHOT
version=1.3.4-SNAPSHOT

kotlin.version=1.6.10
kotlin.version=1.6.21

# This version take precedence if 'bootstrap' property passed to project
kotlin.version.snapshot=1.6.255-SNAPSHOT
Expand Down
4 changes: 2 additions & 2 deletions integration-test/gradle.properties
Expand Up @@ -2,8 +2,8 @@
# Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#

mainKotlinVersion=1.6.10
mainLibVersion=1.3.3-SNAPSHOT
mainKotlinVersion=1.6.21
mainLibVersion=1.3.4-SNAPSHOT

kotlin.code.style=official
kotlin.js.compiler=both
Expand Down

0 comments on commit 984345b

Please sign in to comment.