sortsmith 0.1.1 → 0.2.0

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: 5c5bfb3e13979aff55f28fd2a7a35e39989ca4d4b50d1d24e66ff3b280ae4467
4
- data.tar.gz: 4bd7e565493601604d2386e9477353f2c7f9fd1008ad52cf90091e63210b511e
3
+ metadata.gz: fb5b3aee0492a9a38de3999f07444c05e0e7ad00c86c3c3f6a87be19151e5b23
4
+ data.tar.gz: e3a1f4497ffc436f56ee881e58086e23dc0009357e1bfe3cd9393dc4642162de
5
5
  SHA512:
6
- metadata.gz: 9035b9533826d73e4efd724d9b84cc92efc59760b02aafd96d334050b8936161f4935c3b5e32c26129c87935dee616e6ba5329b1d8cf8910133236c792ae6008
7
- data.tar.gz: b27f07bf73948720d7da605385d190884d12ad89999cdb8900f84c65c94d7680c19555bd2122f43452546b361805287167d96d82e12a47cc61eb8f3c49881c6c
6
+ metadata.gz: 64d378b0764c272de8ba01a1230ef7457ea36627712c5c38f1531b9d57e1ca44e2627bb880aeede760f0bfc168cfdffccea8d1b3577e07daa8fe64181e3cb8cd
7
+ data.tar.gz: 373dea1996fbe61a6c2e0cf3095c761b4b388f52932e78e8e43f1d3e7cac696d949ecf2233cd4f8d89c77cd1133c9aa6b2e84d40fc0e9c70d7e5795b5e65b84a
data/CHANGELOG.md CHANGED
@@ -13,6 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
+ ## [0.2.0] - 12025-02-17
17
+
18
+ ### Added
19
+
20
+ - Added Ruby version test matrix
21
+
22
+ ### Changed
23
+
24
+ - Updated `flake.nix` to use Ruby 3.4
25
+
26
+ ### Removed
27
+
28
+ - Removed Ruby 3.0 and 3.1 support
29
+
16
30
  ## [0.1.1] - 12025-01-15
17
31
 
18
32
  ### Changed
@@ -28,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
42
  - Type checking with Steep/RBS
29
43
  - GitHub Actions workflow for automated testing and type checking
30
44
 
31
- [unreleased]: https://github.com/itsthedevman/sortsmith/compare/v0.1.1...HEAD
32
- [0.2.0]: https://github.com/itsthedevman/sortsmith/compare/v0.1.0...v0.1.1
45
+ [unreleased]: https://github.com/itsthedevman/sortsmith/compare/v0.2.0...HEAD
46
+ [0.2.0]: https://github.com/itsthedevman/sortsmith/compare/v0.1.1...v0.2.0
47
+ [0.1.1]: https://github.com/itsthedevman/sortsmith/compare/v0.1.0...v0.1.1
33
48
  [0.1.0]: https://github.com/itsthedevman/sortsmith/compare/ac357965a1bc641d187333a5b032c5a423020ae9...v0.1.0
data/flake.nix CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- description = "Ruby 3.3.6 development environment";
2
+ description = "Ruby 3.4 development environment";
3
3
 
4
4
  inputs = {
5
5
  nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
@@ -14,7 +14,7 @@
14
14
  {
15
15
  devShells.default = pkgs.mkShell {
16
16
  buildInputs = with pkgs; [
17
- (ruby_3_3.override {
17
+ (ruby_3_4.override {
18
18
  jemallocSupport = true;
19
19
  docSupport = false;
20
20
  })
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sortsmith
4
- VERSION = "0.1.1"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sortsmith
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 1980-01-01 00:00:00.000000000 Z
11
+ date: 2025-02-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Sortsmith provides a flexible, chainable API for sorting Ruby collections.
14
14
  It supports sorting by object keys, methods, case sensitivity, and custom transformations.
@@ -53,7 +53,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 3.0.0
56
+ version: '3.2'
57
57
  required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="