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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/.version.txt +1 -1
- data/CHANGELOG.md +8 -0
- data/ci/{build_image → build_image.sh} +1 -1
- data/lib/dapr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d001bf2fd07204b306fd2a246c0c4af09286c8f552191db799ee207d4daa272f
|
4
|
+
data.tar.gz: 63805e4f48f6557d8921d11d45cd1d5da08c42a6ce7feef63c3c3277cc175e62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57727a5210314aa669ce8528007d25924424c2e6548209d83603262e364f8d73605c79d39cddc6c8ceb34ee3f1fca17e6666bef0035e7e89ebfab4c0b1901d30
|
7
|
+
data.tar.gz: a22ea07ef846e43d3ca53ed032579fdb8067809e8e451bea3fdefa709d0ed88d0d8820cf25db5cebaef6a8c9e324611f1e09cdead35c0ceb24a289b9b0458ccf
|
data/.version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
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
|
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
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.
|
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
|