cloud_events 0.1.0 → 0.1.1

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: 8c1658e90d1e5d2ba5fe59cd174faf0bf1a475e14f9d910fab5a5136b13417fd
4
- data.tar.gz: 19dfdc7de4c50ea3e03cb7818ed526b9bff93173be68d378c512b4c466fc14ab
3
+ metadata.gz: 3c3e3c4f0c6f1b7dc96314f5a4564cdd87888f9f4f858f5d12e1556505c64630
4
+ data.tar.gz: f73cfbc438b97d4ebb71a7f5f32c342d50d588b78ddc525ad597a75323147b61
5
5
  SHA512:
6
- metadata.gz: 1ff3c4b897ad25aafe2a13761d862d3bca6f28d2d9d57f611f3bf2c086161c6b559d30125888654b6e543ce30ffa7bedff99c42f115871507480855264354cea
7
- data.tar.gz: 35024a3f6613d3d24a71f56fe50e3dc8a3e53a53c6b79468fd3a9f61b7311b940a1bff1d6dfb63000c37bd653e96ee9007c9f4d30e201060186f6b5766fd6515
6
+ metadata.gz: 926a0c078a58961046e0b1a181a54f8e9323b01ef6bcc2e5021d0ef3a767ffcbec697e7067ae266b496c76a29bc103616e45c3a0ee4a4dad3eae72a259122514
7
+ data.tar.gz: 1a8415734e80047430ea3a216bc1c6ab41361410ec5a7be9b48e4ea60642992737559439c81d40c9892ab4f7c210df408afaef9ffa32b538bd5ac777b2b6327f
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### v0.1.1 / 2020-07-20
4
+
5
+ * Updated a few documentation links. No functional changes.
6
+
3
7
  ### v0.1.0 / 2020-07-08
4
8
 
5
9
  * Initial release of the Ruby SDK.
data/README.md CHANGED
@@ -163,7 +163,7 @@ toys rubocop
163
163
  That said, we are not style sticklers, and if a break is necessary for code
164
164
  readability or practicality, Rubocop rules can be selectively disabled.
165
165
 
166
- ### Pull Requests
166
+ ### Pull requests
167
167
 
168
168
  We welcome contributions from the community! Please take some time to become
169
169
  acquainted with the process before submitting a pull request. There are just a
@@ -209,13 +209,19 @@ To perform a release:
209
209
  that all GitHub checks against the current commit have succeeded. If these
210
210
  checks pass, the script will create and push a release tag.
211
211
 
212
- 5. A GitHub action will then perform the release within a few minutes. You can
213
- check the [GitHub Actions dashboard](https://github.com/dazuma/toys/actions)
214
- for status information on the release.
212
+ 5. A GitHub action will then perform the release within a few minutes. The
213
+ [GitHub actions dashboard](https://github.com/cloudevents/sdk-ruby/actions?query=workflow%3A%22CloudEvents+Release%22)
214
+ will provide status information on the release workflow.
215
215
 
216
216
  If the release workflow fails, fix the problem, and then you will need to
217
217
  delete the release tag manually before triggering the release again.
218
218
 
219
+ ### For more information
220
+
221
+ * Library documentation: https://cloudevents.github.io/sdk-ruby
222
+ * Issue tracker: https://github.com/cloudevents/sdk-ruby/issues
223
+ * Changelog: https://cloudevents.github.io/sdk-ruby/latest/file.CHANGELOG.html
224
+
219
225
  ## Community
220
226
 
221
227
  * **Weekly meetings:** There are bi-weekly calls immediately following the
@@ -15,9 +15,9 @@ module CloudEvents
15
15
  # * Event classes are defined within this module. For example, events
16
16
  # conforming to the CloudEvents 1.0 specification are of type
17
17
  # {CloudEvents::Event::V1}.
18
- # * All event classes include this module, so you can use
18
+ # * All event classes include this module itself, so you can use
19
19
  # `is_a? CloudEvents::Event` to test whether an object is an event.
20
- # * All event objects are immutable. Data and atribute values can be
20
+ # * All event objects are immutable. Data and attribute values can be
21
21
  # retrieved but not modified. To "modify" an event, make a copy with
22
22
  # the desired changes. Generally, event classes will provide a helper
23
23
  # method for this purpose.
@@ -5,5 +5,5 @@ module CloudEvents
5
5
  # Version of the Ruby CloudEvents SDK
6
6
  # @return [String]
7
7
  #
8
- VERSION = "0.1.0"
8
+ VERSION = "0.1.1"
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud_events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-08 00:00:00.000000000 Z
11
+ date: 2020-07-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: The official Ruby implementation of the CloudEvents Specification. Provides
14
14
  data types for events, and HTTP/JSON bindings for marshalling and unmarshalling
@@ -37,10 +37,10 @@ homepage: https://github.com/cloudevents/sdk-ruby
37
37
  licenses:
38
38
  - Apache-2.0
39
39
  metadata:
40
- changelog_uri: https://github.com/cloudevents/sdk-ruby/blob/master/CHANGELOG.md
40
+ changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1/file.CHANGELOG.html
41
41
  source_code_uri: https://github.com/cloudevents/sdk-ruby
42
42
  bug_tracker_uri: https://github.com/cloudevents/sdk-ruby/issues
43
- documentation_uri: https://rubydoc.info/gems/cloud_events/0.1.0
43
+ documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1
44
44
  post_install_message:
45
45
  rdoc_options: []
46
46
  require_paths: