webhook_inbox 0.1.0 → 0.1.2

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: 3e8996a95485a31adad6b0ad9be8b2c24bd40ce375f66242db772c0cf61fc3be
4
- data.tar.gz: cda5dd9e10dbe34183a2e3526d4661c07aca104139899effb24b7a993499b08a
3
+ metadata.gz: 29ba3796d497ce2bd65c24594aa4f5ecf8d48beee67b5a67f1a54d4822a02699
4
+ data.tar.gz: 144e12d5df90e3631da678d99581010729ca9bbaea5fc679f1e76d1174d35b0c
5
5
  SHA512:
6
- metadata.gz: 6b379d2cb53ea7635367ecd47ca935928e65b778ee3c24b3605999167da68df616f868bc074e702b7bdff4f63ad9d10d94a64e0658bdf7c77e278f5381f33780
7
- data.tar.gz: fba1b1086546871e9d7324c650dc8779781c896d70f84a6ddef4c4a1543ac5a10e64e189c1e41a4052b32501d0810b504099953d95498ef409ef852e730681a1
6
+ metadata.gz: d928e5ac5f459dfd020dffe3e05d9f9c032e69d6de0c12fb2957e437fec3f341b7600cc2a85597c7d304dd4fa23238dd85728f04eb298a252ef4d88a7e63ce98
7
+ data.tar.gz: 691584f9ace002bf59293f49685ffa7608d1acb0eb5872036d39bf61a03451d0723249d724967807390fbddd54c00455682e56669a64dfd2eb3974029b5da8ed
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ plugins:
3
3
 
4
4
  AllCops:
5
5
  NewCops: enable
6
- TargetRubyVersion: 3.1
6
+ TargetRubyVersion: 3.2
7
7
  Exclude:
8
8
  - "bin/**/*"
9
9
  - "vendor/**/*"
data/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.2] — 2026-06-09
11
+
12
+ ### Fixed
13
+
14
+ - Aligned `TargetRubyVersion` in `.rubocop.yml` with `required_ruby_version` (both now 3.2).
15
+
16
+ ## [0.1.1] — 2026-06-09
17
+
18
+ ### Fixed
19
+
20
+ - Corrected `required_ruby_version` to `>= 3.2.0` (Rails 8.x requires Ruby 3.2; the 3.1.0 floor in v0.1.0 was incorrect).
21
+ - Dropped Ruby 3.1 from CI matrix; it is incompatible with Rails 8.x.
22
+ - Removed `Gemfile.lock` from version control; gems should never pin their lockfile.
23
+
10
24
  ## [0.1.0] — 2026-06-09
11
25
 
12
26
  ### Added
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WebhookInbox
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webhook_inbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jibran Usman
@@ -109,7 +109,7 @@ licenses: []
109
109
  metadata:
110
110
  homepage_uri: https://github.com/jibranusman95/webhook_inbox
111
111
  source_code_uri: https://github.com/jibranusman95/webhook_inbox
112
- changelog_uri: https://github.com/jibranusman95/webhook_inbox/blob/main/CHANGELOG.md
112
+ changelog_uri: https://github.com/jibranusman95/webhook_inbox/blob/master/CHANGELOG.md
113
113
  rubygems_mfa_required: 'true'
114
114
  post_install_message:
115
115
  rdoc_options: []
@@ -119,7 +119,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - ">="
121
121
  - !ruby/object:Gem::Version
122
- version: 3.1.0
122
+ version: 3.2.0
123
123
  required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  requirements:
125
125
  - - ">="