Skip to content

Commit

Permalink
chore: Release 0.2.2 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4rikris authored Jul 11, 2022
1 parent ba22af0 commit cef3343
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ brews:
description: "Schema registry"
tap:
owner: odpf
name: homebrew-taps
name: homebrew-tap
license: "Apache 2.0"
folder: Formula
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Ideally, you should install it somewhere in your PATH for easy use. `/usr/local/

```sh
# Install stencil (requires homebrew installed)
$ brew install odpf/taps/stencil
$ brew install odpf/tap/stencil

# Upgrade stencil (requires homebrew installed)
$ brew upgrade stencil
Expand Down
2 changes: 1 addition & 1 deletion clients/clojure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin

Add the below dependency to your `project.clj` file:
```clj
[io.odpf/stencil-clj "0.2.1"]
[io.odpf/stencil-clj "0.2.2"]
```

## 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 io.odpf/stencil-clj "0.2.1"
(defproject io.odpf/stencil-clj "0.2.2"
:description "Stencil client for clojure"
:url "https://github.com/odpf/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: 'io.odpf', name: 'stencil', version: '0.2.1'
implementation group: 'io.odpf', name: 'stencil', version: '0.2.2'
```

#### 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 'io.odpf'
version '0.2.1'
version '0.2.2'

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": "@odpf/stencil",
"version": "0.2.1",
"version": "0.2.2",
"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 @@ -6,7 +6,7 @@ A Clojure library designed to easily encode and decode protobuf messages by usin

Add the below dependency to your `project.clj` file:
```clj
[io.odpf/stencil-clj "0.2.1"]
[io.odpf/stencil-clj "0.2.2"]
```

## 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: 'io.odpf', name: 'stencil', version: '0.2.1'
implementation group: 'io.odpf', name: 'stencil', version: '0.2.2'
```

#### Maven
Expand All @@ -25,7 +25,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
<dependency>
<groupId>io.odpf</groupId>
<artifactId>stencil</artifactId>
<version>0.2.1</version>
<version>0.2.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/reference/api.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# API
## Version: 0.2.1
## Version: 0.2.2

### /v1beta1/namespaces

Expand Down

0 comments on commit cef3343

Please sign in to comment.