Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### v2.76.0 (2026-07-02)
* * *

### Bug Fixes:
- Fixed the packaged gem to include the telemetry sources (`ChargeBee::Telemetry` adapter, related types, and the telemetry executor) that were unintentionally omitted from the `2.75.0` release manifest. No API changes.


### v2.75.0 (2026-07-01)
* * *

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
chargebee (2.75.0)
chargebee (2.76.0)
cgi (>= 0.1.0, < 1.0.0)

GEM
Expand All @@ -10,7 +10,7 @@ GEM
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
bigdecimal (3.2.2)
cgi (0.5.1)
cgi (0.5.2)
crack (1.0.0)
bigdecimal
rexml
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.75.0
2.76.0
14 changes: 12 additions & 2 deletions chargebee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
s.required_ruby_version = '>= 1.9.3'
s.name = 'chargebee'
s.version = '2.75.0'
s.date = '2026-06-30'
s.version = '2.76.0'
s.date = '2026-07-02'
s.summary = "Ruby client for Chargebee API."
s.description = "Subscription Billing - Simple. Secure. Affordable. More details at www.chargebee.com."
s.metadata = {
Expand Down Expand Up @@ -159,10 +159,20 @@ Gem::Specification.new do |s|
lib/chargebee/request.rb
lib/chargebee/rest.rb
lib/chargebee/result.rb
lib/chargebee/telemetry/request_telemetry_context.rb
lib/chargebee/telemetry/request_telemetry_error.rb
lib/chargebee/telemetry/request_telemetry_result.rb
lib/chargebee/telemetry/telemetry_adapter.rb
lib/chargebee/telemetry/telemetry_attribute_keys.rb
lib/chargebee/telemetry/telemetry_support.rb
lib/chargebee/telemetry_executor.rb
lib/chargebee/util.rb
lib/ssl/ca-certs.crt
spec/chargebee/list_result_spec.rb
spec/chargebee/native_request_spec.rb
spec/chargebee/request_telemetry_spec.rb
spec/chargebee/telemetry_executor_spec.rb
spec/chargebee/telemetry_support_spec.rb
spec/chargebee_spec.rb
spec/errors_spec.rb
spec/sample_response.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/chargebee.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@

module ChargeBee

VERSION = '2.75.0'
VERSION = '2.76.0'

@@default_env = nil
@@verify_ca_certs = true
Expand Down
Loading