From 64c7daf8a5314f2ec5a434f16986c11e14eeeb34 Mon Sep 17 00:00:00 2001 From: Ravi Suhag Date: Wed, 5 Jun 2024 15:08:50 -0500 Subject: [PATCH 1/2] chore: release 0.51 --- README.md | 2 +- clients/clojure/README.md | 2 +- clients/clojure/project.clj | 2 +- clients/java/README.md | 2 +- clients/java/build.gradle | 2 +- clients/js/package.json | 2 +- docs/docs/clients/java.md | 4 ++-- docs/docs/installation.md | 2 +- docs/docs/reference/api.md | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1bdee31f..be9e3563 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ docker pull raystack/stencil:latest To pull a specific version: ```sh -docker pull raystack/stencil:v0.5.0 +docker pull raystack/stencil:v0.5.1 ``` ## Usage diff --git a/clients/clojure/README.md b/clients/clojure/README.md index f5789cdc..d810d9b5 100644 --- a/clients/clojure/README.md +++ b/clients/clojure/README.md @@ -7,7 +7,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin Add the below dependency to your `project.clj` file: ```clj - [org.raystack/stencil-clj "0.5.0"] + [org.raystack/stencil-clj "0.5.1"] ``` ## Usage diff --git a/clients/clojure/project.clj b/clients/clojure/project.clj index 581a26ef..2ed1a9ab 100644 --- a/clients/clojure/project.clj +++ b/clients/clojure/project.clj @@ -1,4 +1,4 @@ -(defproject org.raystack/stencil-clj "0.5.0" +(defproject org.raystack/stencil-clj "0.5.1" :description "Stencil client for clojure" :url "https://github.com/raystack/stencil" :license {:name "Apache 2.0" diff --git a/clients/java/README.md b/clients/java/README.md index 9546e0c8..4a57b4ef 100644 --- a/clients/java/README.md +++ b/clients/java/README.md @@ -16,7 +16,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip #### Gradle ```groovy - implementation group: 'org.raystack', name: 'stencil', version: '0.5.0' + implementation group: 'org.raystack', name: 'stencil', version: '0.5.1' ``` #### Maven diff --git a/clients/java/build.gradle b/clients/java/build.gradle index 418f5bc0..46d0426c 100644 --- a/clients/java/build.gradle +++ b/clients/java/build.gradle @@ -10,7 +10,7 @@ plugins { } group 'org.raystack' -version '0.5.0' +version '0.5.1' repositories { mavenLocal() diff --git a/clients/js/package.json b/clients/js/package.json index f5903597..879c4cbd 100644 --- a/clients/js/package.json +++ b/clients/js/package.json @@ -1,6 +1,6 @@ { "name": "@raystack/stencil", - "version": "0.5.0", + "version": "0.5.1", "description": "Stencil js client package provides a store to lookup protobuf descriptors and options to keep the protobuf descriptors upto date.", "main": "main.js", "scripts": { diff --git a/docs/docs/clients/java.md b/docs/docs/clients/java.md index 7766924f..9d5031bf 100644 --- a/docs/docs/clients/java.md +++ b/docs/docs/clients/java.md @@ -16,7 +16,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip #### Gradle ```groovy - implementation group: 'org.raystack', name: 'stencil', version: '0.5.0' + implementation group: 'org.raystack', name: 'stencil', version: '0.5.1' ``` #### Maven @@ -25,7 +25,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip org.raystack stencil - 0.5.0 + 0.5.1 ``` diff --git a/docs/docs/installation.md b/docs/docs/installation.md index e672ce45..1ded6054 100644 --- a/docs/docs/installation.md +++ b/docs/docs/installation.md @@ -56,7 +56,7 @@ docker pull raystack/stencil:latest To pull a specific version: ``` -docker pull raystack/stencil:v0.5.0 +docker pull raystack/stencil:v0.5.1 ``` ### Building from source diff --git a/docs/docs/reference/api.md b/docs/docs/reference/api.md index f0025c53..ac56cc9e 100644 --- a/docs/docs/reference/api.md +++ b/docs/docs/reference/api.md @@ -1,6 +1,6 @@ # API -## Version: 0.5.0 +## Version: 0.5.1 ### /v1beta1/namespaces From 669bc8350510bfd8048189a6abca70a6c578f2e9 Mon Sep 17 00:00:00 2001 From: Ravi Suhag Date: Wed, 5 Jun 2024 15:13:30 -0500 Subject: [PATCH 2/2] chore: release 0.5.1 --- docs/docs/clients/clojure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/clients/clojure.md b/docs/docs/clients/clojure.md index a7e6343a..843660a8 100644 --- a/docs/docs/clients/clojure.md +++ b/docs/docs/clients/clojure.md @@ -7,7 +7,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin Add the below dependency to your `project.clj` file: ```clj -[org.raystack/stencil-clj "0.4.1"] +[org.raystack/stencil-clj "0.5.1"] ``` ## Usage