Skip to content

Commit 941e049

Browse files
authored
chore: upgrade protos (#164)
* chore: fix typos * build: run make ui before release * chore: update protobuf * build: version bump
1 parent b745f09 commit 941e049

File tree

16 files changed

+19
-18
lines changed

16 files changed

+19
-18
lines changed

.goreleaser.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ before:
55
hooks:
66
- go mod tidy
77
- make clean
8+
- make ui
89
builds:
910
- id: "stencil"
1011
main: ./main.go
@@ -52,7 +53,7 @@ dockers:
5253
- "docker.io/raystack/{{.ProjectName}}:{{ .Version }}"
5354
- "docker.io/raystack/{{.ProjectName}}:{{ .Tag }}-amd64"
5455
nfpms:
55-
- maintainer: ODPF
56+
- maintainer: Raystack
5657
description: Schema registry
5758
homepage: https://github.com/raystack/stencil
5859
license: Apache 2.0

README.md

Lines changed: 1 addition & 1 deletion
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.4.0
84+
docker pull raystack/stencil:v0.4.1
8585
```
8686

8787
## Usage

clients/clojure/README.md

Lines changed: 1 addition & 1 deletion
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.0"]
10+
[org.raystack/stencil-clj "0.4.1"]
1111
```
1212

1313
## Usage

clients/clojure/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
(defproject org.raystack/stencil-clj "0.4.0"
1+
(defproject org.raystack/stencil-clj "0.4.1"
22
:description "Stencil client for clojure"
33
:url "https://github.com/raystack/stencil"
44
:license {:name "Apache 2.0"
55
:url "https://www.apache.org/licenses/LICENSE-2.0"}
66
:dependencies [[org.clojure/clojure "1.10.3"]
7-
[org.raystack/stencil "0.2.1"]]
7+
[org.raystack/stencil "0.4.0"]]
88
:plugins [[lein-cljfmt "0.7.0"]]
99
:global-vars {*warn-on-reflection* true}
1010
:source-paths ["src"]
55 Bytes
Binary file not shown.

clients/java/README.md

Lines changed: 1 addition & 1 deletion
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.4.0'
19+
implementation group: 'org.raystack', name: 'stencil', version: '0.4.1'
2020
```
2121

2222
#### Maven

clients/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group 'org.raystack'
13-
version '0.4.0'
13+
version '0.4.1'
1414

1515
repositories {
1616
mavenLocal()

clients/js/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@raystack/stencil",
3-
"version": "0.4.0",
3+
"version": "0.4.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": {

cmd/help.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
var envHelp = map[string]string{
88
"short": "List of supported environment variables",
99
"long": heredoc.Doc(`
10-
ODPF_CONFIG_DIR: the directory where stencil will store configuration files. Default:
10+
RAYSTACK_CONFIG_DIR: the directory where stencil will store configuration files. Default:
1111
"$XDG_CONFIG_HOME/raystack" or "$HOME/.config/raystack".
1212
1313
NO_COLOR: set to any value to avoid printing ANSI escape sequences for color output.

0 commit comments

Comments
 (0)