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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b45ad6653e6cf95dc462d60917fec18dc4cab282eb44fa6ea28952aa982bf5d
4
- data.tar.gz: 8d00cbe1a53a9c6f31b982919660e04d1d10559e579293fe32f0ecd963d7e696
3
+ metadata.gz: 7c0107825650e25e94b0938752820841dc1055e74cb724bb9d9a3dcbb206589f
4
+ data.tar.gz: 6f568d7b05327407afca3961dbb497e0eab9ccb9ccb0a94622d02580ca8c73b7
5
5
  SHA512:
6
- metadata.gz: '0583c614ebdba3ac5cf9e0988dbab656cfd49e437e5543ec3dafab95fc0cd1506cbfb42c85f72627da3895561957e40b6f07d1f22c1cd28eb3944971f3f064b0'
7
- data.tar.gz: 0e53dbb9821ea6b5e9df0f33814fc18d0da48ba6a0330b5e941e7c9b0b5cf93c8778527b5bd9b90ea32ea36183f2f594c852f37b76a6a5d436c070b8217fca13
6
+ metadata.gz: bab3c347e7cb48136dd2d0f5d891c7d1df6b4d51147670eae027f8c8f5a73fb9098e3d3b8961c1f0c13d38f7d2c13a739de5495dd45103e1b9ca847a1fcddabe
7
+ data.tar.gz: 4318166c1a443dd9b498fb39278836eda8f0b076ec3d73931ecd657793c0c5fb6d59b342ea4db39973c2ec28862d191eb0af618df772ea0b10a97dc35d5e9f44
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### v0.9.1 / 2026-05-05
4
+
5
+ * DOCS: Minor documentation updates
6
+
3
7
  ### v0.9.0 / 2026-03-23
4
8
 
5
9
  * ADDED: Provided a `version_from_code` setting that allows the current VERSION constant to determine the release version
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
- * 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 based
50
- 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.
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
- ```sh
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
- ```sh
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
- ```sh
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
- ```sh
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
- ```sh
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
- ```sh
157
+ ```
158
158
  $ toys release create-labels
159
159
  ```
160
160
 
161
161
  Then, to generate the GitHub Actions workflows, run:
162
162
 
163
- ```sh
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
- ```sh
455
+ ```
456
456
  $ toys release gen-gh-pages
457
457
  ```
458
458
 
@@ -6,6 +6,6 @@ module Toys
6
6
  # Current version of the Toys release system.
7
7
  # @return [String]
8
8
  #
9
- VERSION = "0.9.0"
9
+ VERSION = "0.9.1"
10
10
  end
11
11
  end
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.0
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.0/file.CHANGELOG.html
106
- source_code_uri: https://github.com/dazuma/toys/tree/toys-release/v0.9.0/toys-release
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.0
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