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 6265e76 commit 1402ef1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2018-2024 Mitchell Dalvi Rosen, Travis Staton
Copyright 2018-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
10 changes: 5 additions & 5 deletions timer-wheel.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: Mitchell Dalvi Rosen
bug-reports: https://github.com/awkward-squad/timer-wheel/issues
build-type: Simple
category: Data
copyright: (c) 2018-2024 Mitchell Dalvi Rosen, Travis Staton
copyright: (c) 2018-2025 Mitchell Dalvi Rosen, Travis Staton
homepage: https://github.com/awkward-squad/timer-wheel
license-file: LICENSE
license: BSD-3-Clause
Expand All @@ -13,7 +13,7 @@ name: timer-wheel
synopsis: A timer wheel
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

description:
This library provides a timer wheel data structure for registering one-shot or recurring @IO@ actions to fire after a
Expand All @@ -32,7 +32,7 @@ source-repository head

common component
build-depends:
base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20,
base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20 || ^>= 4.21,
default-extensions:
BlockArguments
DeriveAnyClass
Expand Down Expand Up @@ -89,7 +89,7 @@ test-suite tests
import: component
build-depends:
ki,
random ^>= 1.2,
random ^>= 1.2 || ^>= 1.3,
timer-wheel,
ghc-options: -threaded -with-rtsopts=-N2
hs-source-dirs: test
Expand All @@ -100,7 +100,7 @@ benchmark bench
import: component
build-depends:
ki,
random ^>= 1.2,
random ^>= 1.2 || ^>= 1.3,
tasty-bench ^>= 0.3.5 || ^>= 0.4,
timer-wheel,
ghc-options: -fproc-alignment=64 -rtsopts -threaded "-with-rtsopts=-N2 -T -A32m"
Expand Down

0 comments on commit 1402ef1

Please sign in to comment.