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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c856b97b9e77c751f97f81f2b4ccf1d4bab2d939ad808d86cd86703bbe7616ae
4
- data.tar.gz: 2aee215e4a54aed30f179e7da637a3ede554e3a689bc36690f39d7251b1941e0
3
+ metadata.gz: 6b37e2e8280c1b400c3d5a9d8faa3a292eadc7835090f01511c1d28658d101d1
4
+ data.tar.gz: 8c9584c5fddc36f5aa515119244687771ac4b2cc32aec5be0e4f2318627a8147
5
5
  SHA512:
6
- metadata.gz: 7d7abda12e3b7d075e20cce210951639a814379542537cc922cc216178f39e2f6fbbc55ed6ff2bee8973890758f8ff71965d1c87cb128b70ef3757a561ba37a7
7
- data.tar.gz: 4dd8770a375b40f3d2440ca5a51859abbd3447306cf1bc8e9df136cbebc1f38daeca369962510fe6865715a349f21bd37fee15a8463cb03ca1871e85217f7427
6
+ metadata.gz: 7ebf69a9daf634fc8d66547044274e8cd15df36e14fb5216e4fca278ff32c7b3b0b17bb0f7bb2216fdb11aee1322e16452e3476d5d3864b6604ae6af680e18ea
7
+ data.tar.gz: f1d1170b2606988b8bffee707851191bb921a84c52deb723f27fe7e317bd92ef2b30fe1b803557ca1e656975dd51ff1a7b251e993f1492af2b4f9934a25dcc17
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2025-05-15
4
+
5
+ - Fix: Replace example URLs
6
+
3
7
  ## [0.1.0] - 2025-05-15
4
8
 
5
9
  - Initial release
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Shill
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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/example/shill
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/example/shill
35
- source_code_uri: https://github.com/example/shill
36
- changelog_uri: https://github.com/example/shill/blob/main/CHANGELOG.md
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: