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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e7d416cc4e5989199b27614c9ea651a86510ffc823efd22837a995b643dd965
4
- data.tar.gz: 5abf84d0a65f218974ace1361f5ed8d7ca79fb4512c90f260b86a55307881824
3
+ metadata.gz: 1e36fd0dd4d5ee64a34ddb3dbac72222ab840a18879236c3d50aef41b9d6d915
4
+ data.tar.gz: 73dc2254127cf49d3318d84b3bf940c993fb6307515bbd499523c8010868e3c9
5
5
  SHA512:
6
- metadata.gz: 9382ce0f1278a8547d1fe2d9fd13f637cbe7d793ff9df02db8ed45eeec184d52c3752cb62cf4a227ae1d2aeb155159328aa83b2f6722485cf12c122f581acaa9
7
- data.tar.gz: 974bf8afa1f54d417b906178b4640b8165fabd4ad1f978c97f98fed376263a56f2a04eddf2ceb94f2f0db15c5255d5babf160c8f962847f5f17a92403e1c4fc8
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).
@@ -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 = ["Fizzy Team"]
9
- spec.email = ["support@fizzy.do"]
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/main/CHANGELOG.md"
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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FizzyApiClient
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Fizzy Team
7
+ - Rob Zolkos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-21 00:00:00.000000000 Z
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
- - support@fizzy.do
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/main/CHANGELOG.md
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: