Skip to content

Commit eb799d0

Browse files
authored
chore: release 0.5.1 (#177)
* chore: release 0.51 * chore: release 0.5.1
1 parent 859e220 commit eb799d0

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ docker pull raystack/stencil:latest
8181
To pull a specific version:
8282

8383
```sh
84-
docker pull raystack/stencil:v0.5.0
84+
docker pull raystack/stencil:v0.5.1
8585
```
8686

8787
## Usage

clients/clojure/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin
77
Add the below dependency to your `project.clj` file:
88

99
```clj
10-
[org.raystack/stencil-clj "0.5.0"]
10+
[org.raystack/stencil-clj "0.5.1"]
1111
```
1212

1313
## Usage

clients/clojure/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.raystack/stencil-clj "0.5.0"
1+
(defproject org.raystack/stencil-clj "0.5.1"
22
:description "Stencil client for clojure"
33
:url "https://github.com/raystack/stencil"
44
:license {:name "Apache 2.0"

clients/java/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
1616
#### Gradle
1717

1818
```groovy
19-
implementation group: 'org.raystack', name: 'stencil', version: '0.5.0'
19+
implementation group: 'org.raystack', name: 'stencil', version: '0.5.1'
2020
```
2121

2222
#### Maven

clients/java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group 'org.raystack'
13-
version '0.5.0'
13+
version '0.5.1'
1414

1515
repositories {
1616
mavenLocal()

clients/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@raystack/stencil",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Stencil js client package provides a store to lookup protobuf descriptors and options to keep the protobuf descriptors upto date.",
55
"main": "main.js",
66
"scripts": {

docs/docs/clients/clojure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin
77
Add the below dependency to your `project.clj` file:
88

99
```clj
10-
[org.raystack/stencil-clj "0.4.1"]
10+
[org.raystack/stencil-clj "0.5.1"]
1111
```
1212

1313
## Usage

docs/docs/clients/java.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
1616
#### Gradle
1717

1818
```groovy
19-
implementation group: 'org.raystack', name: 'stencil', version: '0.5.0'
19+
implementation group: 'org.raystack', name: 'stencil', version: '0.5.1'
2020
```
2121

2222
#### Maven
@@ -25,7 +25,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
2525
<dependency>
2626
<groupId>org.raystack</groupId>
2727
<artifactId>stencil</artifactId>
28-
<version>0.5.0</version>
28+
<version>0.5.1</version>
2929
</dependency>
3030
```
3131

docs/docs/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ docker pull raystack/stencil:latest
5656
To pull a specific version:
5757

5858
```
59-
docker pull raystack/stencil:v0.5.0
59+
docker pull raystack/stencil:v0.5.1
6060
```
6161

6262
### Building from source

docs/docs/reference/api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# API
22

3-
## Version: 0.5.0
3+
## Version: 0.5.1
44

55
### /v1beta1/namespaces
66

0 commit comments

Comments
 (0)