Skip to content

Commit

Permalink
Merge pull request #5 from mmhat/release-1.0.0.0
Browse files Browse the repository at this point in the history
Release 1.0.0.0
  • Loading branch information
mmhat authored Aug 23, 2023
2 parents a940771 + 2f5267f commit c6deff9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
14 changes: 8 additions & 6 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.16
# version: 0.17.20230811
#
# REGENDATA ("0.16",["github","cabal.project"])
# REGENDATA ("0.17.20230811",["github","cabal.project"])
#
name: Haskell-CI
on:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
apt-get update
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2 > "$HOME/.ghcup/bin/ghcup"
curl -sL https://downloads.haskell.org/ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
"$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
Expand All @@ -79,10 +79,12 @@ jobs:
echo "CABAL_DIR=$HOME/.cabal" >> "$GITHUB_ENV"
echo "CABAL_CONFIG=$HOME/.cabal/config" >> "$GITHUB_ENV"
HCDIR=/opt/$HCKIND/$HCVER
HC=$HOME/.ghcup/bin/$HCKIND-$HCVER
HC=$("$HOME/.ghcup/bin/ghcup" whereis ghc "$HCVER")
HCPKG=$(echo "$HC" | sed 's#ghc$#ghc-pkg#')
HADDOCK=$(echo "$HC" | sed 's#ghc$#haddock#')
echo "HC=$HC" >> "$GITHUB_ENV"
echo "HCPKG=$HOME/.ghcup/bin/$HCKIND-pkg-$HCVER" >> "$GITHUB_ENV"
echo "HADDOCK=$HOME/.ghcup/bin/haddock-$HCVER" >> "$GITHUB_ENV"
echo "HCPKG=$HCPKG" >> "$GITHUB_ENV"
echo "HADDOCK=$HADDOCK" >> "$GITHUB_ENV"
echo "CABAL=$HOME/.ghcup/bin/cabal-3.10.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
HCNUMVER=$(${HC} --numeric-version|perl -ne '/^(\d+)\.(\d+)\.(\d+)(\.(\d+))?$/; print(10000 * $1 + 100 * $2 + ($3 == 0 ? $5 != 1 : $3))')
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CHANGELOG

## v0.0.1.0
* Release
## v1.0.0.0 (2023-08-23)
* Initial release
23 changes: 11 additions & 12 deletions typed-process-effectful.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: typed-process-effectful
version: 0.0.1.0
cabal-version: 3.0
name: typed-process-effectful
version: 1.0.0.0
synopsis:
A binding of the @typed-process@ library for the @effectful@ effect system.

Expand All @@ -12,24 +12,23 @@ description:
implementation relies on
[`typed-process`][https://hackage.haskell.org/package/typed-process] instead.

category: System
category: System
homepage:
https://github.com/haskell-effectful/typed-process-effectful#readme

bug-reports:
https://github.com/haskell-effectful/typed-process-effectful/issues

author: Dominik Peteler
maintainer: hackage+typed-process-effectful@with-h.at
license: BSD-3-Clause
build-type: Simple
author: Dominik Peteler
maintainer: hackage+typed-process-effectful@with-h.at
license: BSD-3-Clause
build-type: Simple
extra-doc-files:
CHANGELOG.md
LICENSE.md
README.md

tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.4 || ==9.6.1
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.4 || ==9.6.1

source-repository head
type: git
Expand Down Expand Up @@ -64,8 +63,8 @@ test-suite typed-process-effectful-test
, base
, effectful
, effectful-core
, tasty
, tasty-hunit
, tasty >=1.4 && <1.5
, tasty-hunit >=0.10 && <0.11
, typed-process-effectful

hs-source-dirs: test
Expand Down

0 comments on commit c6deff9

Please sign in to comment.