shill 0.1.0 → 0.1.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/README.md +33 -0
- data/lib/shill/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b37e2e8280c1b400c3d5a9d8faa3a292eadc7835090f01511c1d28658d101d1
|
4
|
+
data.tar.gz: 8c9584c5fddc36f5aa515119244687771ac4b2cc32aec5be0e4f2318627a8147
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ebf69a9daf634fc8d66547044274e8cd15df36e14fb5216e4fca278ff32c7b3b0b17bb0f7bb2216fdb11aee1322e16452e3476d5d3864b6604ae6af680e18ea
|
7
|
+
data.tar.gz: f1d1170b2606988b8bffee707851191bb921a84c52deb723f27fe7e317bd92ef2b30fe1b803557ca1e656975dd51ff1a7b251e993f1492af2b4f9934a25dcc17
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -115,6 +115,39 @@ bundle install
|
|
115
115
|
bundle exec rake test # runs the Minitest suite
|
116
116
|
```
|
117
117
|
|
118
|
+
### Releasing a new version
|
119
|
+
|
120
|
+
1. Bump the version in `lib/shill/version.rb` following [Semantic Versioning](https://semver.org/) (e.g. `0.1.1` → `0.1.2`).
|
121
|
+
2. Update `CHANGELOG.md` (optional but recommended).
|
122
|
+
3. Commit the changes:
|
123
|
+
|
124
|
+
```bash
|
125
|
+
git commit -am "Bump version to x.y.z"
|
126
|
+
```
|
127
|
+
|
128
|
+
4. Run the Bundler release task (builds, pushes the gem, and tags the commit):
|
129
|
+
|
130
|
+
```bash
|
131
|
+
bundle exec rake release # same as `rake release`
|
132
|
+
```
|
133
|
+
|
134
|
+
Behind the scenes this will:
|
135
|
+
|
136
|
+
* Run `rake build` → creates `pkg/shill-x.y.z.gem`.
|
137
|
+
* Run `gem push` to upload the new gem to RubyGems.org using your saved API key.
|
138
|
+
* Create a Git tag `vX.Y.Z` and push it to the origin.
|
139
|
+
|
140
|
+
5. Done! The new version will be live on RubyGems within a minute or so.
|
141
|
+
|
142
|
+
If you prefer to do things manually you can replicate the steps yourself:
|
143
|
+
|
144
|
+
```bash
|
145
|
+
rake build # => pkg/shill-x.y.z.gem
|
146
|
+
gem push pkg/shill-x.y.z.gem # upload
|
147
|
+
git tag -a vX.Y.Z -m "Release vX.Y.Z"
|
148
|
+
git push && git push --tags
|
149
|
+
```
|
150
|
+
|
118
151
|
---
|
119
152
|
|
120
153
|
## Contributing
|
data/lib/shill/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Köhlbrugge
|
@@ -26,14 +26,14 @@ files:
|
|
26
26
|
- lib/shill.rb
|
27
27
|
- lib/shill/version.rb
|
28
28
|
- sig/shill.rbs
|
29
|
-
homepage: https://github.com/
|
29
|
+
homepage: https://github.com/marckohlbrugge/shill
|
30
30
|
licenses:
|
31
31
|
- MIT
|
32
32
|
metadata:
|
33
33
|
allowed_push_host: https://rubygems.org
|
34
|
-
homepage_uri: https://github.com/
|
35
|
-
source_code_uri: https://github.com/
|
36
|
-
changelog_uri: https://github.com/
|
34
|
+
homepage_uri: https://github.com/marckohlbrugge/shill
|
35
|
+
source_code_uri: https://github.com/marckohlbrugge/shill
|
36
|
+
changelog_uri: https://github.com/marckohlbrugge/shill/blob/main/CHANGELOG.md
|
37
37
|
post_install_message:
|
38
38
|
rdoc_options: []
|
39
39
|
require_paths:
|