Skip to content

Commit

Permalink
bump base upper bound
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed May 16, 2024
1 parent 2bb23f4 commit 661a786
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.18.1
# version: 0.19.20240513
#
# REGENDATA ("0.18.1",["github","queues.cabal"])
# REGENDATA ("0.19.20240513",["github","queues.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -23,24 +23,24 @@ jobs:
timeout-minutes:
60
container:
image: buildpack-deps:bionic
image: buildpack-deps:jammy
continue-on-error: ${{ matrix.allow-failure }}
strategy:
matrix:
include:
- compiler: ghc-9.8.2
- compiler: ghc-9.10.1
compilerKind: ghc
compilerVersion: 9.8.2
compilerVersion: 9.10.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.4
- compiler: ghc-9.8.2
compilerKind: ghc
compilerVersion: 9.6.4
compilerVersion: 9.8.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.8
- compiler: ghc-9.6.5
compilerKind: ghc
compilerVersion: 9.4.8
compilerVersion: 9.6.5
setup-method: ghcup
allow-failure: false
fail-fast: false
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
chmod a+x $HOME/.cabal/bin/cabal-plan
cabal-plan --version
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: source
- name: initial cabal.project for sdist
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: restore cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
rm -f cabal.project.local
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
- name: save cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: always()
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Unreleased
## [1.0.0] - March 3, 2024

- Initial release.
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 Rosen, Travis Staton
Copyright 2023-2024 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
9 changes: 5 additions & 4 deletions queues.cabal
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
cabal-version: 2.2

author: Mitchell Rosen, Travis Staton
author: Mitchell Dalvi Rosen, Travis Staton
bug-reports: https://github.com/awkward-squad/queues/issues
category: Data
copyright: Copyright (C) 2023-2024 Mitchell Rosen, Travis Staton
copyright: Copyright (C) 2023-2024 Mitchell Dalvi Rosen, Travis Staton
homepage: https://github.com/awkward-squad/queues
license: BSD-3-Clause
license-file: LICENSE
maintainer: Mitchell Rosen <[email protected]>, Travis Staton <[email protected]>
maintainer: Mitchell Dalvi Rosen <[email protected]>, Travis Staton <[email protected]>
name: queues
synopsis: Queue data structures.
tested-with: GHC == 9.4.8, GHC == 9.6.4, GHC == 9.8.2
tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1
version: 1.0.0
x-revision: 1

description:
Queue data structures, as described in
Expand Down

0 comments on commit 661a786

Please sign in to comment.