foundation-edge 0.0.2 → 0.0.3
raw patch · 3 files changed
+13/−9 lines, 3 filesdep ~foundationPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: foundation
API changes (from Hackage documentation)
Files
- Foundation/Compat/ByteString.hs +1/−1
- LICENSE +2/−1
- foundation-edge.cabal +10/−7
Foundation/Compat/ByteString.hs view
@@ -29,4 +29,4 @@ toByteString :: UArray Word8 -> ByteString toByteString v = unsafeCreate len $ \dst -> withPtr v $ \src -> memcpy dst src len where- !len = length v+ !(CountOf len) = length v
LICENSE view
@@ -1,4 +1,5 @@-Copyright (c) 2015-2016 Vincent Hanquez <vincent@snarc.org>+Copyright (c) 2015-2017 Vincent Hanquez <vincent@snarc.org>+Copyright (c) 2017 Foundation Maintainers All rights reserved.
foundation-edge.cabal view
@@ -1,5 +1,5 @@ Name: foundation-edge-Version: 0.0.2+Version: 0.0.3 Synopsis: foundation's edge with the conventional set of packages Description: A set of functions to allow interaction with more conventional@@ -8,23 +8,26 @@ Current support: . * bytestring+ .+ * text License: BSD3 License-file: LICENSE-Copyright: Vincent Hanquez <vincent@snarc.org>+copyright: 2015-2017 Vincent Hanquez <vincent@snarc.org>, 2017- Foundation Maintainers Author: Vincent Hanquez <vincent@snarc.org> Maintainer: vincent@snarc.org Category: foundation Stability: experimental Build-Type: Simple-Homepage: https://github.com/haskell-foundation/foundation-edge-Bug-Reports: https://github.com/haskell-foundation/foundation-edge/issues+Homepage: https://github.com/haskell-foundation/foundation+Bug-Reports: https://github.com/haskell-foundation/foundation/issues Cabal-Version: >=1.10-tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1+tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1 extra-source-files: README.md source-repository head type: git- location: https://github.com/vincenthz/hs-foundation+ location: https://github.com/haskell-foundation/foundation+ subdir: edge Library Exposed-modules: Foundation.Compat.ByteString@@ -33,7 +36,7 @@ TypeFamilies BangPatterns DeriveDataTypeable- Build-depends: foundation >= 0.0.7+ Build-depends: foundation >= 0.0.10 , bytestring , text ghc-options: -Wall