bonkers-bitfields 1.0.0 → 1.0.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 +19 -0
- data/README.md +2 -2
- data/lib/bitfields/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 205befb74c0b514c35cec2ce9f09223aefc594b3493544d93a2b5303ef8892aa
|
|
4
|
+
data.tar.gz: c7eabf56cb021d4f68d8e29281639a9929954d58a8efd2742e927904b9599e79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a4bcf1d8a1ac60b48bf3cc1243f1f81b16f15c727e9684adc3d67f7bc752b4d3fca5db130761579acb704f4e060aaca2ab924bb66f4682c7811efcd4223b994
|
|
7
|
+
data.tar.gz: 4a3a4e57de1b30620297ff25e4ab7e90cbb0afb977c9cf4c082e607c57361ef4a9b339c573ce995cf499cdd1b4464c269b1e026010c4f48f0504b11185ff1f70
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,21 @@ All notable changes to this project are documented here. The format is based on
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.1] - 2026-06-29
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Tested against ActiveRecord 8.1 (Ruby 3.2+); supported range is now AR 6.1 – 8.1.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Corrected the `Rael Gugelmin Cunha` contributor link, which pointed at another contributor's
|
|
16
|
+
GitHub profile.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- `Gemfile.lock` is no longer committed (standard for a library), so CI resolves dependencies
|
|
20
|
+
fresh against each `gemfiles/*.gemfile`.
|
|
21
|
+
|
|
22
|
+
## [1.0.0] - 2026-06-29
|
|
23
|
+
|
|
9
24
|
### Changed (breaking)
|
|
10
25
|
- **Renamed the published gem to `bonkers-bitfields`.** The required library path
|
|
11
26
|
(`require "bitfields"`) and the `Bitfields` module are unchanged, so `include Bitfields`
|
|
@@ -41,3 +56,7 @@ All notable changes to this project are documented here. The format is based on
|
|
|
41
56
|
### Removed
|
|
42
57
|
- Travis CI (replaced with GitHub Actions) and the `wwtd` development dependency.
|
|
43
58
|
- Support for Ruby < 3.1 and ActiveRecord < 6.1.
|
|
59
|
+
|
|
60
|
+
[Unreleased]: https://github.com/bonkers-ie/bitfields/compare/v1.0.1...HEAD
|
|
61
|
+
[1.0.1]: https://github.com/bonkers-ie/bitfields/compare/v1.0.0...v1.0.1
|
|
62
|
+
[1.0.0]: https://github.com/bonkers-ie/bitfields/releases/tag/v1.0.0
|
data/README.md
CHANGED
|
@@ -192,7 +192,7 @@ end
|
|
|
192
192
|
|
|
193
193
|
Supported versions
|
|
194
194
|
===================
|
|
195
|
-
Ruby >= 3.1 and ActiveRecord 6.1 – 8.
|
|
195
|
+
Ruby >= 3.1 and ActiveRecord 6.1 – 8.1, tested on CI.
|
|
196
196
|
|
|
197
197
|
Authors
|
|
198
198
|
=======
|
|
@@ -205,7 +205,7 @@ Authors
|
|
|
205
205
|
- [Justin Aiken](https://github.com/JustinAiken)
|
|
206
206
|
- [szTheory](https://github.com/szTheory)
|
|
207
207
|
- [Reed G. Law](https://github.com/reedlaw)
|
|
208
|
-
- [Rael Gugelmin Cunha](https://github.com/
|
|
208
|
+
- [Rael Gugelmin Cunha](https://github.com/raelgc)
|
|
209
209
|
- [Alan Wong](https://github.com/naganowl)
|
|
210
210
|
- [Andrew Bates](https://github.com/a-bates)
|
|
211
211
|
- [Shirish Pampoorickal](https://github.com/shirish-pampoorickal)
|
data/lib/bitfields/version.rb
CHANGED