Skip to content

Commit

Permalink
chore: fix clients issue (#32)
Browse files Browse the repository at this point in the history
* chore: fix clients issue

* chore: version uprgade

* chore: version uprgade

* chore: version uprgade

* chore: version uprgade for clojure

* chore: version uprgade for clojure

* chore: version uprgade for js client

* chore: version uprgade for js client

* chore: version uprgade for js client

---------

Co-authored-by: gagan.dhand <[email protected]>
  • Loading branch information
gdgagan696 and gdgagangeek authored May 15, 2024
1 parent 56d1499 commit c03ca8f
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
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
[com.gotocompany/stencil-clj "0.4.0"]
[com.gotocompany/stencil-clj "0.5.0"]
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions clients/clojure/project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject com.gotocompany/stencil-clj "0.4.0"
(defproject com.gotocompany/stencil-clj "0.5.0"
:description "Stencil client for clojure"
:url "https://github.com/goto/stencil"
:license {:name "Apache 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[org.clojure/clojure "1.10.3"]
[com.gotocompany/stencil "0.1.0"]]
[com.gotocompany/stencil "0.5.0"]]
:plugins [[lein-cljfmt "0.7.0"]]
:global-vars {*warn-on-reflection* true}
:source-paths ["src"]
Expand Down
4 changes: 2 additions & 2 deletions 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: 'com.gotocompany', name: 'stencil', version: '0.4.0'
implementation group: 'com.gotocompany', name: 'stencil', version: '0.7.0'
```

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

Expand Down
8 changes: 4 additions & 4 deletions clients/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.gotocompany'
version '0.6.0'
version '0.7.0'

repositories {
mavenLocal()
Expand Down Expand Up @@ -91,9 +91,9 @@ publishing {
}
developers {
developer {
id = 'harikrishnakanchi'
name = 'Hari Krishna'
email = 'hari.kanchi@gojek.com'
id = 'github-actions[bot]'
name = 'github-actions[bot]'
email = '41898282+github-actions[bot]@users.noreply.github.com'
}
}
from components.java
Expand Down
4 changes: 2 additions & 2 deletions clients/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "@goto-company/stencil",
"version": "0.4.0",
"version": "0.5.0",
"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
[com.gotocompany/stencil-clj "0.4.0"]
[com.gotocompany/stencil-clj "0.5.0"]
```

## 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: 'com.gotocompany', name: 'stencil', version: '0.4.0'
implementation group: 'com.gotocompany', name: 'stencil', version: '0.7.0'
```

#### Maven
Expand All @@ -25,7 +25,7 @@ Protobuf allows you to define a protobuf file using DescriptorSet. A FileDescrip
<dependency>
<groupId>com.gotocompany</groupId>
<artifactId>stencil</artifactId>
<version>0.4.0</version>
<version>0.7.0</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 @@ -23,7 +23,7 @@ docker pull gotocompany/stencil:latest
To pull a specific version:

```
docker pull gotocompany/stencil:0.4.0
docker pull gotocompany/stencil:0.8.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.4.0
## Version: 0.8.1

### /v1beta1/namespaces

Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"homepage": "/ui",
"dependencies": {
Expand Down

0 comments on commit c03ca8f

Please sign in to comment.