dapr 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9f4294d26869aed36aea295650b7f6ffcf15173812fbc76679dc361093a6a2d
4
- data.tar.gz: c068d94e60edbe17b2120d7393af514a497474dd980b587da784fdb467a33bfb
3
+ metadata.gz: d001bf2fd07204b306fd2a246c0c4af09286c8f552191db799ee207d4daa272f
4
+ data.tar.gz: 63805e4f48f6557d8921d11d45cd1d5da08c42a6ce7feef63c3c3277cc175e62
5
5
  SHA512:
6
- metadata.gz: 8055172e840a45c368f1444a38df0f417c25ab2b3763b04718572a018cb78df8943fc8c9f08f3d7197abaa863000a33615ec1d496e03f23b8a1391d7d71c664e
7
- data.tar.gz: 8e4a426aa303f960c27903b42bf145b52e73398090de48736eb9503ced92f5dc08d9a980fad5fb021a323163feef46fedf360d7437f064956fd2c9d8c0eb6e3f
6
+ metadata.gz: 57727a5210314aa669ce8528007d25924424c2e6548209d83603262e364f8d73605c79d39cddc6c8ceb34ee3f1fca17e6666bef0035e7e89ebfab4c0b1901d30
7
+ data.tar.gz: a22ea07ef846e43d3ca53ed032579fdb8067809e8e451bea3fdefa709d0ed88d0d8820cf25db5cebaef6a8c9e324611f1e09cdead35c0ceb24a289b9b0458ccf
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.7"
2
+ ".": "0.2.8"
3
3
  }
data/.version.txt CHANGED
@@ -1 +1 @@
1
- 0.2.7
1
+ 0.2.8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.8](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.7...v0.2.8) (2024-06-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Adds type declaration to workflow inputs ([#50](https://github.com/rubyists/dapr-ruby-client/issues/50)) ([3203b1c](https://github.com/rubyists/dapr-ruby-client/commit/3203b1cfa383f58b61a7fc00f57bbd007c1ff494))
9
+ * **build:** Corrects name of image build script ([#49](https://github.com/rubyists/dapr-ruby-client/issues/49)) ([04ff29e](https://github.com/rubyists/dapr-ruby-client/commit/04ff29e5812ac5986f3ec01b10300c566d12979c))
10
+
3
11
  ## [0.2.7](https://github.com/rubyists/dapr-ruby-client/compare/v0.2.6...v0.2.7) (2024-06-03)
4
12
 
5
13
 
@@ -220,7 +220,7 @@ then
220
220
  printf "%s" "$GITHUB_TOKEN" | $runtime login -u "$GITHUB_TOKEN" --password-stdin "$REGISTRY" || die 10 "Failed to login to $REGISTRY"
221
221
  fi
222
222
 
223
- tags=($(echo "$tag" | awk -F'.' 'NF==3{print $1"."$2"."$3" "$1"."$2" "$1} NF==2{print $1"."$2" "$1} NF==1{print $1}'))
223
+ mapfile -t tags < <(echo "$tag" | awk -F'.' 'NF==3{print $1"."$2"."$3; print $1"."$2; print $1; next} NF==2{print $1"."$2; print $1; next} {print}')
224
224
  for t in "${tags[@]}"
225
225
  do
226
226
  proper_tag=$IMAGE_NAME:$tag
data/lib/dapr/version.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  module Rubyists
4
4
  module Dapr
5
5
  # x-release-please-start-version
6
- VERSION = '0.2.7'
6
+ VERSION = '0.2.8'
7
7
  # x-release-please-end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel
@@ -55,7 +55,7 @@ files:
55
55
  - CHANGELOG.md
56
56
  - Rakefile
57
57
  - Readme.adoc
58
- - ci/build_image
58
+ - ci/build_image.sh
59
59
  - ci/publish-gem.sh
60
60
  - coverage/coverage.json
61
61
  - lib/dapr.rb