Skip to content

Commit cef3343

Browse files
authored
chore: Release 0.2.2 (#136)
1 parent ba22af0 commit cef3343

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ brews:
6767
description: "Schema registry"
6868
tap:
6969
owner: odpf
70-
name: homebrew-taps
70+
name: homebrew-tap
7171
license: "Apache 2.0"
7272
folder: Formula
7373
dependencies:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Ideally, you should install it somewhere in your PATH for easy use. `/usr/local/
4242

4343
```sh
4444
# Install stencil (requires homebrew installed)
45-
$ brew install odpf/taps/stencil
45+
$ brew install odpf/tap/stencil
4646

4747
# Upgrade stencil (requires homebrew installed)
4848
$ brew upgrade stencil

clients/clojure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin
66

77
Add the below dependency to your `project.clj` file:
88
```clj
9-
[io.odpf/stencil-clj "0.2.1"]
9+
[io.odpf/stencil-clj "0.2.2"]
1010
```
1111

1212
## Usage

clients/clojure/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.odpf/stencil-clj "0.2.1"
1+
(defproject io.odpf/stencil-clj "0.2.2"
22
:description "Stencil client for clojure"
33
:url "https://github.com/odpf/stencil"
44
:license {:name "Apache 2.0"

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: 'io.odpf', name: 'stencil', version: '0.2.1'
19+
implementation group: 'io.odpf', name: 'stencil', version: '0.2.2'
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 'io.odpf'
13-
version '0.2.1'
13+
version '0.2.2'
1414

1515
repositories {
1616
mavenLocal()

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": "@odpf/stencil",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin
66

77
Add the below dependency to your `project.clj` file:
88
```clj
9-
[io.odpf/stencil-clj "0.2.1"]
9+
[io.odpf/stencil-clj "0.2.2"]
1010
```
1111

1212
## Usage

docs/docs/clients/java.md

Lines changed: 2 additions & 2 deletions
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: 'io.odpf', name: 'stencil', version: '0.2.1'
19+
implementation group: 'io.odpf', name: 'stencil', version: '0.2.2'
2020
```
2121

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

docs/docs/reference/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# API
2-
## Version: 0.2.1
2+
## Version: 0.2.2
33

44
### /v1beta1/namespaces
55

0 commit comments

Comments
 (0)