Skip to content

Commit

Permalink
bump base and random upper bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed Jan 7, 2025
1 parent 2bde021 commit e241266
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
8 changes: 4 additions & 4 deletions list-shuffle.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit e241266

Please sign in to comment.