Skip to content

Commit

Permalink
Prepare 0.1.3.1 release.
Browse files Browse the repository at this point in the history
Update package metadata.
Use new .github workflows.
  • Loading branch information
brianjosephmckeon committed Feb 14, 2024
1 parent 3a0ea96 commit bc449d6
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 14 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@byteverse/l3c
11 changes: 11 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: build
on:
pull_request:
branches:
- "*"

jobs:
call-workflow:
uses: byteverse/.github/.github/workflows/build-matrix.yaml@main
with:
cabal-file: http-exchange-instantiations.cabal
10 changes: 10 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: release
on:
push:
tags:
- "*"

jobs:
call-workflow:
uses: byteverse/.github/.github/workflows/release.yaml@main
secrets: inherit
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for http-exchange-instantiations

## 0.1.3.1 -- 2024-02-14

* Update package metadata.

## 0.1.3.0 -- 2023-09-21

* Add missing `interruptibleHandshake`.
Expand Down
41 changes: 27 additions & 14 deletions http-exchange-instantiations.cabal
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
cabal-version: 3.0
name: http-exchange-instantiations
version: 0.1.3.0
version: 0.1.3.1
synopsis: Instantiations of http-exchange

-- description:
description: Instantiations of http-exchange.
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: [email protected]
maintainer: [email protected]
homepage: https://github.com/byteverse/http-exchange-instantiations
bug-reports: https://github.com/byteverse/http-exchange-instantiations/issues

copyright: 2023 Andrew Martin
category: Network
build-type: Simple
extra-doc-files: CHANGELOG.md
extra-doc-files:
CHANGELOG.md
README.md

tested-with: GHC ==9.4.8 || ==9.6.3 || ==9.8.1

common build-settings
default-language: GHC2021
ghc-options: -Wall -Wunused-packages

library chanimpl
ghc-options: -Wall
import: build-settings
ghc-options: -O2
exposed-modules:
SocketChannel
SocketInterruptibleChannel
Expand All @@ -32,17 +43,16 @@ library chanimpl
, tls >=1.8

hs-source-dirs: src-chanimpl
default-language: GHC2021

library
ghc-options: -Wall
import: build-settings
ghc-options: -O2
exposed-modules:
Http.Exchange.Network
Http.Exchange.Tls

build-depends:
, base >=4.16.3.0
, bytestring >=0.11
, chanimpl
, http-exchange >=0.1.1
, http-interchange >=0.3.1
Expand All @@ -52,14 +62,14 @@ library
, tls >=1.7

hs-source-dirs: src
default-language: GHC2021
mixins:
http-exchange (Exchange as SocketExchange) requires (Channel as SocketChannel),
http-exchange (Exchange as TlsExchange) requires (Channel as TlsChannel),
http-exchange (Exchange as SocketInterruptibleExchange) requires (Channel as SocketInterruptibleChannel)

executable http-insecure
ghc-options: -Wall
import: build-settings
ghc-options: -O2
main-is: Main.hs
build-depends:
, base >=4.16.3.0
Expand All @@ -69,10 +79,10 @@ executable http-insecure
, pretty-show >=1.10

hs-source-dirs: app-http-insecure
default-language: GHC2021

executable http-secure
ghc-options: -Wall
import: build-settings
ghc-options: -O2
main-is: Main.hs
build-depends:
, base >=4.16.3.0
Expand All @@ -84,4 +94,7 @@ executable http-secure
, tls >=1.7

hs-source-dirs: app-http-secure
default-language: GHC2021

source-repository head
type: git
location: git://github.com/byteverse/http-exchange-instantiations.git

0 comments on commit bc449d6

Please sign in to comment.