wuss 1.1.17 → 1.1.18
raw patch · 3 files changed
+13/−25 lines, 3 filesdep ~basedep ~bytestringdep ~connectionPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, bytestring, connection, network, websockets
API changes (from Hackage documentation)
Files
- LICENSE.markdown +1/−1
- README.markdown +1/−1
- wuss.cabal +11/−23
LICENSE.markdown view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Taylor Fausak+Copyright (c) 2021 Taylor Fausak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
README.markdown view
@@ -1,6 +1,6 @@ # Wuss -[](https://travis-ci.org/tfausak/wuss)+[](https://github.com/tfausak/wuss/actions/new) [](https://hackage.haskell.org/package/wuss) [](https://www.stackage.org/package/wuss)
wuss.cabal view
@@ -1,7 +1,7 @@-cabal-version: 2.2+cabal-version: >= 1.10 name: wuss-version: 1.1.17+version: 1.1.18 synopsis: Secure WebSocket (WSS) clients description:@@ -24,34 +24,22 @@ location: https://github.com/tfausak/wuss type: git -common basics+library+ build-depends:+ base >= 4.13.0 && < 4.16+ , bytestring >= 0.10.10 && < 0.11+ , connection >= 0.3.1 && < 0.4+ , network >= 3.1.1 && < 3.2+ , websockets >= 0.12.7 && < 0.13 default-language: Haskell2010+ exposed-modules: Wuss ghc-options: -Weverything- -Wno-all-missed-specialisations- -Wno-implicit-prelude -Wno-missing-exported-signatures- -Wno-missing-import-lists- -Wno-safe -Wno-unsafe-- if impl(ghc >= 8.8)- ghc-options:- -Wno-missing-deriving-strategies+ hs-source-dirs: src/lib if impl(ghc >= 8.10) ghc-options: -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module--library- import: basics-- build-depends:- base >= 4.9.0 && < 4.15- , bytestring >= 0.10.8 && < 0.11- , connection >= 0.2.6 && < 0.4- , network >= 2.6.3 && < 2.9 || >= 3.0.0 && < 3.2- , websockets >= 0.9.7 && < 0.13- exposed-modules: Wuss- hs-source-dirs: src/lib