Skip to content

Commit

Permalink
Bump to 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
garyp committed Apr 23, 2024
1 parent d8266ca commit b16a63b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<!--
**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.3/README.md.
-->

**Features**

Expand Down Expand Up @@ -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")
}
```
Expand Down Expand Up @@ -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")
}
```
Expand Down
2 changes: 1 addition & 1 deletion examples/browser-js/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-service-gen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-and-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b16a63b

Please sign in to comment.