webhook_inbox 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 +8 -0
- data/lib/webhook_inbox/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0654da0a21146882bca0ef884c005dfbc4f1d44026146c5e611e9b50297191dd
|
|
4
|
+
data.tar.gz: d945bacccb69a34128376e059e0f02984f1f1c03425c2f54cc4700fc64ecefd2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14d0b3e952ce6264f07aad545fbfc49e6da7229a63dbb91b80b62658e16e23f8799e6dfc1ed5043259ff7f4089de54c0f00f83e3bbaa8ba2342b68684a97c9df
|
|
7
|
+
data.tar.gz: 37d91a68d560bd9c3bb8a7755f50cb33b09e495268efe2f6a49d3ee639ad6168bc88f3620efbf11dd0a775e21c65eff5391b1d96d97f22f9115742787a1bbb45
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] — 2026-06-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- 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).
|
|
15
|
+
- Dropped Ruby 3.1 from CI matrix; it is incompatible with Rails 8.x.
|
|
16
|
+
- Removed `Gemfile.lock` from version control; gems should never pin their lockfile.
|
|
17
|
+
|
|
10
18
|
## [0.1.0] — 2026-06-09
|
|
11
19
|
|
|
12
20
|
### Added
|
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.
|
|
4
|
+
version: 0.1.1
|
|
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/
|
|
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.
|
|
122
|
+
version: 3.2.0
|
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
requirements:
|
|
125
125
|
- - ">="
|