servicestack 0.1.2 → 0.1.3

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: 422e88b02d244852ff3d8941817d5fc6c22c58c2a7698458b4d2d96df75af2bf
4
- data.tar.gz: 9b2941734b9154d258de44f156e2e66b600f6042825535b017cf81699bcaf6da
3
+ metadata.gz: 2b7903981eedef3d52ed39c54494f5370fa0d3a83abe743289468b9d395eef5c
4
+ data.tar.gz: 93db68996921d3d6eb3368e7414ab97ed23a422d907a90f831aec05bf256d33b
5
5
  SHA512:
6
- metadata.gz: '09d3557ceda3563802cedbdcf7feddcadb4ccf5251994c00ecdadefa5417fab664429502b7a94379c53e4136f76e2337075d76f07a22cb015c990cbffb59ea7d'
7
- data.tar.gz: 8abcf83d19d0530c7873a4a6993fc11390305379657f8db395e7a60a07e2faede986dc807e585a68bfd399aeb2b4b6829bbcfa08b42347568ecd304e14a19c43
6
+ metadata.gz: 16408c56eeda8c631548ad2f38cc236381b075bd8d60700a6703d27b32eaf0e1db43952a6426a4f14333f4c50c725aeb0257fbdcc59b7da6141066ad4b350fec
7
+ data.tar.gz: 4e0aaa64d2dee290002cd659254db4637c65a3b35b3a7b6a69b72353fd280a2e20cc33eb1fb2a0ceb080887aa58d8bd9c9b34a797a8c984e40f131aef1453e64
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.3]
6
+
7
+ ### Added
8
+
9
+ - `npm run bump` / `npm run release` scripts that tag a version and create the
10
+ GitHub Release, which the `release` workflow publishes to RubyGems
11
+
5
12
  ## [0.1.2]
6
13
 
7
14
  ### Added
@@ -33,6 +40,7 @@ All notable changes to this project will be documented in this file.
33
40
  - Built-in ServiceStack DTOs referenced by generated DTOs (`ResponseStatus`,
34
41
  `QueryBase`, `QueryResponse`, `Authenticate`, ...)
35
42
 
43
+ [0.1.3]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.3
36
44
  [0.1.2]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.2
37
45
  [0.1.1]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.1
38
46
  [0.1.0]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.0
data/README.md CHANGED
@@ -236,6 +236,25 @@ rake test # unit tests
236
236
  rake test:integration # integration tests against test.servicestack.net
237
237
  ```
238
238
 
239
+ ## Releasing
240
+
241
+ Releases are cut with npm scripts and published by the `release` GitHub Action:
242
+
243
+ ```bash
244
+ npm run bump # 0.1.0 -> 0.1.1 (also `-- minor`, `-- major`, `-- 1.2.3`)
245
+ # describe the release in CHANGELOG.md, then
246
+ npm run release
247
+ ```
248
+
249
+ Or in a single step:
250
+
251
+ ```bash
252
+ npm run release -- patch
253
+ ```
254
+
255
+ `npm run release` tags the version, pushes it and creates the GitHub Release,
256
+ which triggers the workflow that runs the tests and publishes it to [RubyGems](https://rubygems.org/gems/servicestack).
257
+
239
258
  ## License
240
259
 
241
260
  BSD-3-Clause. See [LICENSE](LICENSE).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ServiceStack
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: servicestack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ServiceStack
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.7.2
52
+ rubygems_version: 3.6.9
53
53
  specification_version: 4
54
54
  summary: Typed Ruby Client Library for consuming ServiceStack APIs
55
55
  test_files: []