unmagic-enum 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: 2e0707a39bcaed61e94384ad0f2b80da72d62034788b7b5cfcebfe8ed11430e1
4
- data.tar.gz: 0d54f6ef948a3ffe7667a28032dbab381c974578632cba85eced47f1faac99cf
3
+ metadata.gz: 296bf3ce5a37bbae18729100c9144921c1a65bdf86a30454445103be32b99cdb
4
+ data.tar.gz: 7b551d488656e09684212234abdd7be21ff48b8de3cc2ee92b931f68a824283c
5
5
  SHA512:
6
- metadata.gz: c5859e7c7836a1e81752180a32c20acd9bd628e6f31dbacd9287376ba4994208dda2e13f4c10dd4ffe60dee98f7ac6f1b35e6759c728f244588c2b3384f539c6
7
- data.tar.gz: 69d503aa8641966f37525bccc1216c6dd66d32a80cd1f33786b1f9700c5c2c391f270642d790c554d1ca565427750329c788965a2ac5d55c74a294b673a8b300
6
+ metadata.gz: 3acdd8c864b84a908562b4d6516dbb41ea29ac112d985582785c92051f33b569934f633e3b5b4720744828bd9736271a0fe76ea5de4bc27001c3bc1d4a29aca1
7
+ data.tar.gz: 7da04912825247ceb2f0d9e90a70230c39dbe61ed18842d99145dd7eadd8e3e03f6882749c6c9344957ee7d07c3d05040059e4280f8c31b2e19022d73e0fa656
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ 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-04
11
+
12
+ ### Changed
13
+ - Relaxed `activesupport` dependency to `>= 7.0` (removed upper bound) so the gem installs against Rails 8 and future majors
14
+
10
15
  ## [0.1.0] - 2026-06-04
11
16
 
12
17
  ### Added
@@ -23,5 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
28
  - Rails presence support (`blank?`/`present?`) and JSON serialization (`as_json`)
24
29
  - Empty strings treated as `nil`
25
30
 
26
- [Unreleased]: https://github.com/unreasonable-magic/unmagic-enum/compare/v0.1.0...HEAD
31
+ [Unreleased]: https://github.com/unreasonable-magic/unmagic-enum/compare/v0.1.1...HEAD
32
+ [0.1.1]: https://github.com/unreasonable-magic/unmagic-enum/compare/v0.1.0...v0.1.1
27
33
  [0.1.0]: https://github.com/unreasonable-magic/unmagic-enum/releases/tag/v0.1.0
@@ -3,6 +3,6 @@
3
3
  module Unmagic
4
4
  class Enum
5
5
  # Current version of the unmagic-enum gem
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.1"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unmagic-enum
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
7
  - Keith Pitt
@@ -14,22 +14,16 @@ dependencies:
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '7.0'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
- version: 7.0.0
19
+ version: '7.0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '7.0'
30
24
  - - ">="
31
25
  - !ruby/object:Gem::Version
32
- version: 7.0.0
26
+ version: '7.0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rspec
35
29
  requirement: !ruby/object:Gem::Requirement