From b16a63b79fd83bebd99d3c47644c4f924ececc15 Mon Sep 17 00:00:00 2001 From: Gary Peck Date: Tue, 23 Apr 2024 11:42:36 +0200 Subject: [PATCH] Bump to 0.14.3 --- CHANGELOG.md | 4 ++-- README.md | 8 +++++--- examples/browser-js/build.gradle.kts | 2 +- examples/custom-service-gen/build.gradle.kts | 2 +- examples/gradle-and-jvm/build.gradle.kts | 2 +- gradle.properties | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b69b06e..bb80ba9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.14.3] - Unreleased +## [0.14.3] - 2024-04-23 -[0.14.3]: https://github.com/streem/pbandk/compare/v0.14.2...HEAD +[0.14.3]: https://github.com/streem/pbandk/compare/v0.14.2...v0.14.3 ### Fixed diff --git a/README.md b/README.md index 0a417444..56f3bbc1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ Pbandk is a Kotlin code generator and runtime for [Protocol Buffers](https://developers.google.com/protocol-buffers/). It is built to work across multiple Kotlin platforms. -**NOTE**: This is the documentation for the version of pbandk currently in development. **Documentation for the latest stable version** is available at https://github.com/streem/pbandk/blob/v0.14.2/README.md. + **Features** @@ -361,7 +363,7 @@ repositories { dependencies { // Can be used from the `common` sourceset in a Kotlin Multiplatform project, // or from platform-specific JVM, Android, JS, or Native sourcesets/projects. - implementation("pro.streem.pbandk:pbandk-runtime:0.14.3-SNAPSHOT") + implementation("pro.streem.pbandk:pbandk-runtime:0.14.3") } ``` @@ -391,7 +393,7 @@ runtime: ``` dependencies { - compileOnly("pro.streem.pbandk:protoc-gen-pbandk-lib:0.14.3-SNAPSHOT") + compileOnly("pro.streem.pbandk:protoc-gen-pbandk-lib:0.14.3") } ``` diff --git a/examples/browser-js/build.gradle.kts b/examples/browser-js/build.gradle.kts index d23d7b9b..5f94a424 100644 --- a/examples/browser-js/build.gradle.kts +++ b/examples/browser-js/build.gradle.kts @@ -3,7 +3,7 @@ plugins { id("com.google.protobuf") version "0.8.18" apply false } -val pbandkVersion by extra("0.14.3-SNAPSHOT") +val pbandkVersion by extra("0.14.3") subprojects { repositories { diff --git a/examples/custom-service-gen/build.gradle.kts b/examples/custom-service-gen/build.gradle.kts index 7d8bf235..ba39b6bb 100644 --- a/examples/custom-service-gen/build.gradle.kts +++ b/examples/custom-service-gen/build.gradle.kts @@ -3,7 +3,7 @@ plugins { id("com.google.protobuf") version "0.8.18" apply false } -val pbandkVersion by extra("0.14.3-SNAPSHOT") +val pbandkVersion by extra("0.14.3") subprojects { repositories { diff --git a/examples/gradle-and-jvm/build.gradle.kts b/examples/gradle-and-jvm/build.gradle.kts index b7081360..9d55b063 100644 --- a/examples/gradle-and-jvm/build.gradle.kts +++ b/examples/gradle-and-jvm/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } val protobufVersion by extra("3.11.1") -val pbandkVersion by extra("0.14.3-SNAPSHOT") +val pbandkVersion by extra("0.14.3") repositories { if (System.getenv("CI") == "true") { diff --git a/gradle.properties b/gradle.properties index 475ef481..a4bbe1ff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=pro.streem.pbandk -version=0.14.3-SNAPSHOT +version=0.14.3 kotlin.code.style=official kotlin.mpp.stability.nowarn=true