diff --git a/LICENSE b/LICENSE index 31e258e..652f520 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2023-2024 Mitchell Dalvi Rosen, Travis Staton +Copyright 2023-2025 Mitchell Dalvi Rosen, Travis Staton Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/list-shuffle.cabal b/list-shuffle.cabal index 102b343..2d4d5a4 100644 --- a/list-shuffle.cabal +++ b/list-shuffle.cabal @@ -3,7 +3,7 @@ cabal-version: 2.4 author: Mitchell Dalvi Rosen bug-reports: https://github.com/awkward-squad/list-shuffle/issues category: Data -copyright: Copyright (C) 2024 Mitchell Dalvi Rosen, Travis Staton +copyright: Copyright (C) 2024-2025 Mitchell Dalvi Rosen, Travis Staton description: List shuffling and sampling with optimal asymptotic time and space complexity using the imperative Fisher–Yates algorithm. homepage: https://github.com/awkward-squad/list-shuffle license: BSD-3-Clause @@ -14,7 +14,7 @@ stability: stable synopsis: List shuffling and sampling tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1 version: 1.0.0.1 -x-revision: 1 +x-revision: 2 extra-doc-files: CHANGELOG.md @@ -58,9 +58,9 @@ common component library import: component build-depends: - base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20, + base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20 || ^>= 4.21, primitive ^>= 0.8 || ^>= 0.9, - random ^>= 1.2.1, + random ^>= 1.2.1 || ^>= 1.3, hs-source-dirs: src exposed-modules: List.Shuffle