engine-io-wai 1.0.4 → 1.0.5
raw patch · 2 files changed
+28/−2 lines, 2 filesdep ~wai
Dependency ranges changed: wai
Files
- Changelog.md +24/−0
- engine-io-wai.cabal +4/−2
+ Changelog.md view
@@ -0,0 +1,24 @@+## 1.0.5++* Increased the upper-bound of `wai` to < 3.3.++## 1.0.4++* Increased the upper-bound of http-types to allow < 0.10.++## 1.0.3++* Lower lower bound for attoparsec.++## 1.0.2++* Switch ExceptT to EitherT and lower transformers contraint to support.++## 1.0.1++* Fix issue on hackage. Applicative was missing as import. Errored on ghc 7.8.+* Added homepage to cabal file.++## 1.0.0++* Initial release.
engine-io-wai.cabal view
@@ -1,5 +1,5 @@ name: engine-io-wai-version: 1.0.4+version: 1.0.5 homepage: http://github.com/ocharles/engine.io license: BSD3 license-file: LICENSE@@ -13,6 +13,8 @@ This package provides an @engine-io@ @ServerAPI@ that is compatible with <https://hackage.haskell.org/package/wai/ Wai>. +extra-source-files: Changelog.md+ library exposed-modules: Network.EngineIO.Wai@@ -22,7 +24,7 @@ engine-io >= 1.2 && < 1.3, http-types >= 0.8 && < 0.10, unordered-containers >= 0.2 && < 0.3,- wai >= 3.0 && < 3.1,+ wai >= 3.0 && < 3.3, text >= 1.1 && < 1.3, bytestring >= 0.9 && <0.11, websockets >= 0.8 && < 0.10,