Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
client: update to Zeebe 8.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
cmur2 committed Jan 19, 2024
1 parent 07d1cad commit 01ce44d
Show file tree
Hide file tree
Showing 7 changed files with 226 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.20.0

- add support for [Zeebe 8.4.0](https://github.com/camunda/zeebe/releases/tag/8.4.0)

## 0.19.0 (June 5th, 2023)

- add support for [Zeebe 8.2.5](https://github.com/camunda/zeebe/releases/tag/8.2.5)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Install the gem:
Run a Zeebe instance locally:

```sh
docker run -it --rm -p 26500:26500 camunda/zeebe:8.2.5
docker run -it --rm -p 26500:26500 camunda/zeebe:8.4.0
```

And then try the available [demo script](examples/demo.rb).
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ task ci: ['zeebe:start', :default, 'zeebe:stop']

desc 'Starts Zeebe Docker container'
task 'zeebe:start' do
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:8.2.5'
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:8.4.0'
sleep(10)
end

Expand Down
10 changes: 9 additions & 1 deletion lib/zeebe/client/proto/gateway_pb.rb

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions lib/zeebe/client/proto/gateway_services_pb.rb

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

2 changes: 1 addition & 1 deletion lib/zeebe/client/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

module Zeebe
module Client
VERSION = '0.19.0'.freeze
VERSION = '0.20.0'.freeze
end
end
Loading

0 comments on commit 01ce44d

Please sign in to comment.