Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 0.5.1 #177

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clients/clojure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clients/clojure/project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion clients/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clients/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'org.raystack'
version '0.5.0'
version '0.5.1'

repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion clients/js/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/clients/clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/clients/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,7 +25,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
<dependency>
<groupId>org.raystack</groupId>
<artifactId>stencil</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/reference/api.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# API

## Version: 0.5.0
## Version: 0.5.1

### /v1beta1/namespaces

Expand Down
Loading