servicestack 0.1.2 → 0.1.4
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 +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +19 -0
- data/lib/servicestack/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: 27f480865d2d7939b60c5d9cfa4f57fa1d7bd27b2b6dd8e6eae55318934d4aea
|
|
4
|
+
data.tar.gz: 657ec8d8538df291e39756a296f91485a4fa57ff40f2dee8bd05091510e80674
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4966d7d0255dc846ea43c76eb50148ce4a7ec168ab2fce66d998a044c49b47aabc341756c867542f14b1b8eb8103138fee4f1395d28a8ef1578a0ef14ae71839
|
|
7
|
+
data.tar.gz: 0d7ce3cac27040813e97bbbb709c9b2402a5cac4f251b64af09362f54b1393bed501c0db69783730d82c7a38be867185cf645b963d56ce972caa575ee99ec181
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.4]
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Bumped GitHub Actions to their latest major versions, no library changes
|
|
10
|
+
|
|
11
|
+
## [0.1.3]
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `npm run bump` / `npm run release` scripts that tag a version and create the
|
|
16
|
+
GitHub Release, which the `release` workflow publishes to RubyGems
|
|
17
|
+
|
|
5
18
|
## [0.1.2]
|
|
6
19
|
|
|
7
20
|
### Added
|
|
@@ -33,6 +46,8 @@ All notable changes to this project will be documented in this file.
|
|
|
33
46
|
- Built-in ServiceStack DTOs referenced by generated DTOs (`ResponseStatus`,
|
|
34
47
|
`QueryBase`, `QueryResponse`, `Authenticate`, ...)
|
|
35
48
|
|
|
49
|
+
[0.1.4]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.4
|
|
50
|
+
[0.1.3]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.3
|
|
36
51
|
[0.1.2]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.2
|
|
37
52
|
[0.1.1]: https://github.com/ServiceStack/servicestack-ruby/releases/tag/v0.1.1
|
|
38
53
|
[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).
|
data/lib/servicestack/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.4
|
|
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.
|
|
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: []
|