fizzy-api-client 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 +14 -0
- data/README.md +21 -0
- data/fizzy-api-client.gemspec +3 -3
- data/lib/fizzy_api_client/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: 1e36fd0dd4d5ee64a34ddb3dbac72222ab840a18879236c3d50aef41b9d6d915
|
|
4
|
+
data.tar.gz: 73dc2254127cf49d3318d84b3bf940c993fb6307515bbd499523c8010868e3c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99240a6bf46863a19dc099d207593c2f64c7f62f34e5eb6ac74769b1a771f19e36bdaf3b17dd25e00a41f03b91e4d58d3639330582b59964e1a3b8cb71278307
|
|
7
|
+
data.tar.gz: 75655035dda1ed6c6d3edcb5f2530ab8235b9696a99603017d6b1f3eec540c8bf5d04c0b9561e4cab41bdecc5e572139630b2736d0da36f57951f2a572f8ffae
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.1] - 2025-12-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Release script (`bin/release`) for streamlined version bumps
|
|
13
|
+
- Contributing section in README
|
|
14
|
+
- Releasing section in README
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Gemspec author and email information
|
|
19
|
+
- Changelog URI in gemspec (was pointing to `main` instead of `master`)
|
|
20
|
+
|
|
21
|
+
|
|
8
22
|
## [0.1.0] - 2025-12-21
|
|
9
23
|
|
|
10
24
|
### Added
|
data/README.md
CHANGED
|
@@ -464,6 +464,27 @@ end
|
|
|
464
464
|
|
|
465
465
|
A comprehensive demo script is included that tests every feature of the gem. See [examples/README.md](examples/README.md) for usage instructions.
|
|
466
466
|
|
|
467
|
+
## Releasing
|
|
468
|
+
|
|
469
|
+
```bash
|
|
470
|
+
bin/release patch # 0.1.0 → 0.1.1 (bug fixes)
|
|
471
|
+
bin/release minor # 0.1.0 → 0.2.0 (new features)
|
|
472
|
+
bin/release major # 0.1.0 → 1.0.0 (breaking changes)
|
|
473
|
+
```
|
|
474
|
+
|
|
475
|
+
The script bumps the version, updates CHANGELOG.md, runs tests, commits, tags, and pushes. GitHub Actions handles publishing to RubyGems.
|
|
476
|
+
|
|
477
|
+
## Contributing
|
|
478
|
+
|
|
479
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/robzolkos/fizzy-api-client.
|
|
480
|
+
|
|
481
|
+
1. Fork it
|
|
482
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
483
|
+
3. Run tests (`bundle exec rake test`)
|
|
484
|
+
4. Commit your changes (`git commit -am 'Add some feature'`)
|
|
485
|
+
5. Push to the branch (`git push origin my-new-feature`)
|
|
486
|
+
6. Create a Pull Request
|
|
487
|
+
|
|
467
488
|
## License
|
|
468
489
|
|
|
469
490
|
The gem is available as open source under the terms of the [MIT License](LICENSE.txt).
|
data/fizzy-api-client.gemspec
CHANGED
|
@@ -5,8 +5,8 @@ require_relative "lib/fizzy_api_client/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "fizzy-api-client"
|
|
7
7
|
spec.version = FizzyApiClient::VERSION
|
|
8
|
-
spec.authors = ["
|
|
9
|
-
spec.email = ["
|
|
8
|
+
spec.authors = ["Rob Zolkos"]
|
|
9
|
+
spec.email = ["rob@zolkos.com"]
|
|
10
10
|
|
|
11
11
|
spec.summary = "Ruby client for the Fizzy API"
|
|
12
12
|
spec.description = "A clean, idiomatic Ruby interface to the Fizzy API with minimal dependencies"
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
|
-
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/
|
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
20
20
|
|
|
21
21
|
spec.files = Dir.glob("{lib,examples}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } +
|
|
22
22
|
%w[LICENSE.txt README.md CHANGELOG.md fizzy-api-client.gemspec]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fizzy-api-client
|
|
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
|
+
- Rob Zolkos
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -54,7 +54,7 @@ dependencies:
|
|
|
54
54
|
version: '0'
|
|
55
55
|
description: A clean, idiomatic Ruby interface to the Fizzy API with minimal dependencies
|
|
56
56
|
email:
|
|
57
|
-
-
|
|
57
|
+
- rob@zolkos.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
@@ -94,7 +94,7 @@ licenses:
|
|
|
94
94
|
metadata:
|
|
95
95
|
homepage_uri: https://github.com/robzolkos/fizzy-api-client
|
|
96
96
|
source_code_uri: https://github.com/robzolkos/fizzy-api-client
|
|
97
|
-
changelog_uri: https://github.com/robzolkos/fizzy-api-client/blob/
|
|
97
|
+
changelog_uri: https://github.com/robzolkos/fizzy-api-client/blob/master/CHANGELOG.md
|
|
98
98
|
post_install_message:
|
|
99
99
|
rdoc_options: []
|
|
100
100
|
require_paths:
|