cloud_events 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e5bb2b1e01aef9e34dca014ee2be62da7b2abaea1337c3db3f51c4dc9b6b790
4
- data.tar.gz: 1c439ec71a81da471e67ebcc9de437b34be067c18a293790f0f9a098b3f0862b
3
+ metadata.gz: aac5d146b0b5adbac5c05de9af2e135046f0178baea94dea90005b22934c5b49
4
+ data.tar.gz: efce8edc6fcc07014e0183c87d955ea16ff5a44a5fac197e45a30f730981c939
5
5
  SHA512:
6
- metadata.gz: 69a9b60f9d6d2a10ca5b22bbe171eba142d1864e90eed97bc8db8318d54070a64f916093ba92674eb08076e113f421584249bf114a6293f61c864ec48576e97a
7
- data.tar.gz: ff8ac3a95310bbd915ee96efdb767575b4f094ae01a4b2e136a2e52e407b2c1c62d31e8dc4216c12ccb1267dec279a596eaeba7e16927d7a0768758e356817e7
6
+ metadata.gz: 03c3c93e3ca7e49a67a8366c29f502466848a6e28f418c1ab9621f3dcc3dc050556148bab50e27109337f7bba70dc5c7ddb17e08729e79bbedd599b19f0be11c
7
+ data.tar.gz: d0fa89577d80fd1be5ab8d48689371a033da8b19439c24b1750b5ddc0c4d115e642bc19cc2b04f34ccca82b519f186e41f52e94a885c05a50a2387873ae1d4fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### v0.8.2 / 2025-11-30
4
+
5
+ * DOCS: Fixed a few typos in documentation and error messages
6
+
3
7
  ### v0.8.1 / 2025-11-10
4
8
 
5
9
  * DOCS: Some minor updates and corrections to the README and examples
@@ -131,7 +131,7 @@ module CloudEvents
131
131
  @subtype_base, @subtype_format = @subtype.split("+", 2)
132
132
  until str.empty?
133
133
  str = consume_special(str, ";")
134
- name, str = consume_token(str, downcase: true, error_message: "Faled to parse attribute name")
134
+ name, str = consume_token(str, downcase: true, error_message: "Failed to parse attribute name")
135
135
  str = consume_special(str, "=", error_message: "Failed to find value for attribute #{name}")
136
136
  val, str = consume_token_or_quoted(str, error_message: "Failed to parse value for attribute #{name}")
137
137
  @params << [name, val]
@@ -8,7 +8,7 @@ module CloudEvents
8
8
  # single event or a batch of events.
9
9
  #
10
10
  # The event data is retained in a form that can be reserialized (in a
11
- # structured cotent mode in the same format) but cannot otherwise be
11
+ # structured content mode in the same format) but cannot otherwise be
12
12
  # inspected.
13
13
  #
14
14
  # This object is immutable, and Ractor-shareable on Ruby 3.
@@ -30,7 +30,7 @@ module CloudEvents
30
30
  #
31
31
  # Both the keyword arguments recognized and the returned hash members may
32
32
  # vary from formatter to formatter; similarly, the keyword arguments provided
33
- # and the resturned hash members recognized may also vary for different
33
+ # and the returned hash members recognized may also vary for different
34
34
  # callers. This interface will define a set of common argument and result key
35
35
  # names, but both callers and formatters must gracefully handle the case of
36
36
  # missing or extra information. For example, if a formatter expects a certain
@@ -37,7 +37,7 @@ module CloudEvents
37
37
  end
38
38
 
39
39
  ##
40
- # Trivially an event data object using text format.
40
+ # Trivially encode an event data object using text format.
41
41
  # See {CloudEvents::Format#encode_data} for a general description.
42
42
  #
43
43
  # Expects `:data` and `:content_type` arguments, and will decline the
@@ -5,5 +5,5 @@ module CloudEvents
5
5
  # Version of the Ruby CloudEvents SDK
6
6
  # @return [String]
7
7
  #
8
- VERSION = "0.8.1"
8
+ VERSION = "0.8.2"
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud_events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
@@ -42,10 +42,10 @@ homepage: https://github.com/cloudevents/sdk-ruby
42
42
  licenses:
43
43
  - Apache-2.0
44
44
  metadata:
45
- changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.8.1/file.CHANGELOG.html
45
+ changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.8.2/file.CHANGELOG.html
46
46
  source_code_uri: https://github.com/cloudevents/sdk-ruby
47
47
  bug_tracker_uri: https://github.com/cloudevents/sdk-ruby/issues
48
- documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.8.1
48
+ documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.8.2
49
49
  rdoc_options: []
50
50
  require_paths:
51
51
  - lib