toys-release 0.9.0 → 0.9.1
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 +4 -0
- data/LICENSE.md +1 -1
- data/README.md +13 -13
- data/docs/guide.md +8 -8
- data/lib/toys/release/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c0107825650e25e94b0938752820841dc1055e74cb724bb9d9a3dcbb206589f
|
|
4
|
+
data.tar.gz: 6f568d7b05327407afca3961dbb497e0eab9ccb9ccb0a94622d02580ca8c73b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bab3c347e7cb48136dd2d0f5d891c7d1df6b4d51147670eae027f8c8f5a73fb9098e3d3b8961c1f0c13d38f7d2c13a739de5495dd45103e1b9ca847a1fcddabe
|
|
7
|
+
data.tar.gz: 4318166c1a443dd9b498fb39278836eda8f0b076ec3d73931ecd657793c0c5fb6d59b342ea4db39973c2ec28862d191eb0af618df772ea0b10a97dc35d5e9f44
|
data/CHANGELOG.md
CHANGED
data/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# License
|
|
2
2
|
|
|
3
|
-
Copyright 2025 Daniel Azuma and the Toys contributors
|
|
3
|
+
Copyright 2025-2026 Daniel Azuma and the Toys contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
|
@@ -43,19 +43,19 @@ by closing the pull request without merging.
|
|
|
43
43
|
|
|
44
44
|
### Key features
|
|
45
45
|
|
|
46
|
-
*
|
|
47
|
-
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
46
|
+
* Tight integration with GitHub Actions provides a convenient workflow for
|
|
47
|
+
GitHub-based projects.
|
|
48
|
+
* Automatically generates changelogs based on Conventional Commit messages.
|
|
49
|
+
* Automatically proposes releases with semver-aligned version increments
|
|
50
|
+
based on the semantics implied by the commit messages.
|
|
51
|
+
* Approve and adjust releases and changelogs by editing pull requests.
|
|
52
|
+
* Automatic pre-release checks verify that CI passes and release status is
|
|
53
|
+
consistent.
|
|
54
|
+
* Fix and retry failed releases via GitHub Actions or command line.
|
|
55
|
+
* Supports single-library repositories and multi-library monorepos.
|
|
56
|
+
* Support for groups of libraries that must be released together.
|
|
57
|
+
* Support for publishing reference documentation to gh-pages.
|
|
58
|
+
* Fine-grained configuration of the release pipeline.
|
|
59
59
|
|
|
60
60
|
### System requirements
|
|
61
61
|
|
data/docs/guide.md
CHANGED
|
@@ -69,14 +69,14 @@ happens in GitHub Actions and does not require any local installation.
|
|
|
69
69
|
If you do not have Ruby or Toys installed locally, do so first. Install
|
|
70
70
|
Ruby 2.7 or later, and then install the Toys RubyGem using:
|
|
71
71
|
|
|
72
|
-
```
|
|
72
|
+
```
|
|
73
73
|
$ gem install toys
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
Toys-Release requires Toys 0.20 or later. If you have an older version of Toys,
|
|
77
77
|
update it using:
|
|
78
78
|
|
|
79
|
-
```
|
|
79
|
+
```
|
|
80
80
|
$ toys system update
|
|
81
81
|
```
|
|
82
82
|
|
|
@@ -84,7 +84,7 @@ Finally, you also need the GitHub command line tool, `gh`. Find installation
|
|
|
84
84
|
instructions at https://cli.github.com/. If you are running on MacOS, for
|
|
85
85
|
example, the easiest way to install it is via homebrew:
|
|
86
86
|
|
|
87
|
-
```
|
|
87
|
+
```
|
|
88
88
|
$ brew install gh
|
|
89
89
|
```
|
|
90
90
|
|
|
@@ -104,7 +104,7 @@ load_gem "toys-release"
|
|
|
104
104
|
|
|
105
105
|
Test the install by displaying the online help for toys-release:
|
|
106
106
|
|
|
107
|
-
```
|
|
107
|
+
```
|
|
108
108
|
$ toys release --help
|
|
109
109
|
```
|
|
110
110
|
|
|
@@ -132,7 +132,7 @@ To get you started, Toys-Release provides a config generation tool. Once the
|
|
|
132
132
|
release tool is installed as described above, you can run this from your local
|
|
133
133
|
repository clone directory:
|
|
134
134
|
|
|
135
|
-
```
|
|
135
|
+
```
|
|
136
136
|
$ toys release gen-config
|
|
137
137
|
```
|
|
138
138
|
|
|
@@ -154,13 +154,13 @@ line using the release tool.
|
|
|
154
154
|
|
|
155
155
|
To create the GitHub repo labels, run this from your local repo clone directory:
|
|
156
156
|
|
|
157
|
-
```
|
|
157
|
+
```
|
|
158
158
|
$ toys release create-labels
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
Then, to generate the GitHub Actions workflows, run:
|
|
162
162
|
|
|
163
|
-
```
|
|
163
|
+
```
|
|
164
164
|
$ toys release gen-workflows
|
|
165
165
|
```
|
|
166
166
|
|
|
@@ -452,7 +452,7 @@ To set up documentation, do the following:
|
|
|
452
452
|
|
|
453
453
|
* Create a starting gh-pages branch by running:
|
|
454
454
|
|
|
455
|
-
```
|
|
455
|
+
```
|
|
456
456
|
$ toys release gen-gh-pages
|
|
457
457
|
```
|
|
458
458
|
|
data/lib/toys/release/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: toys-release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
@@ -102,10 +102,10 @@ homepage: https://github.com/dazuma/toys
|
|
|
102
102
|
licenses:
|
|
103
103
|
- MIT
|
|
104
104
|
metadata:
|
|
105
|
-
changelog_uri: https://dazuma.github.io/toys/gems/toys-release/v0.9.
|
|
106
|
-
source_code_uri: https://github.com/dazuma/toys/tree/toys-release/v0.9.
|
|
105
|
+
changelog_uri: https://dazuma.github.io/toys/gems/toys-release/v0.9.1/file.CHANGELOG.html
|
|
106
|
+
source_code_uri: https://github.com/dazuma/toys/tree/toys-release/v0.9.1/toys-release
|
|
107
107
|
bug_tracker_uri: https://github.com/dazuma/toys/issues
|
|
108
|
-
documentation_uri: https://dazuma.github.io/toys/gems/toys-release/v0.9.
|
|
108
|
+
documentation_uri: https://dazuma.github.io/toys/gems/toys-release/v0.9.1
|
|
109
109
|
rdoc_options: []
|
|
110
110
|
require_paths:
|
|
111
111
|
- lib
|