packages feed

bytestring-to-vector 0.3.0.0 → 0.3.0.1

raw patch · 3 files changed

+44/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

+ .travis.yml view
@@ -0,0 +1,40 @@+# This is the simple Travis configuration, which is intended for use+# on applications which do not require cross-platform and+# multiple-GHC-version support. For more information and other+# options, see:+#+# https://docs.haskellstack.org/en/stable/travis_ci/+#+# Copy these contents into the root directory of your Github project in a file+# named .travis.yml++# Choose a build environment+dist: xenial++# Do not choose a language; we provide our own build tools.+language: generic++# Caching so the next build will be fast too.+cache:+  directories:+  - $HOME/.stack++# Ensure necessary system libraries are present+addons:+  apt:+    packages:+      - libgmp-dev++before_install:+# Download and unpack the stack executable+- mkdir -p ~/.local/bin+- export PATH=$HOME/.local/bin:$PATH+- travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'++install:+# Build dependencies+- stack --no-terminal --install-ghc test --only-dependencies++script:+# Build the package, its tests, and its docs and run the tests+- stack --no-terminal test --haddock --no-haddock-deps
README.md view
@@ -1,6 +1,6 @@ [![Build Status](https://travis-ci.org/sheyll/bytestring-to-vetcor.svg?branch=master)](https://travis-ci.org/sheyll/bytestring-to-vetcor) -[![Hackage](https://img.shields.io/hackage/v/bytestring-to-vetcor.svg?style=flat)](http://hackage.haskell.org/package/bytestring-to-vetcor)+[![Hackage](https://img.shields.io/hackage/v/bytestring-to-vetcor.svg?style=flat)](http://hackage.haskell.org/packages/bytestring-to-vetcor)   # Platform dependent no-copy vector - bytestring conversion
bytestring-to-vector.cabal view
@@ -1,8 +1,9 @@ name:                bytestring-to-vector-version:             0.3.0.0+version:             0.3.0.1 license:             BSD3 license-file:        LICENSE synopsis:            Convert between ByteString and Vector.Storable without copying+homepage:            https://github.com/sheyll/bytestring-to-vector category:            Data Structures author:              Keegan McAllister <mcallister.keegan@gmail.com> maintainer:          Sven Heyll <sven.heyll@gmail.com>@@ -19,9 +20,8 @@   .   This library is a fork of the @spool@ package written by Keegan McAllister. - extra-source-files:-  README.md, stack.yaml, LICENSE+  README.md, stack.yaml, LICENSE, .travis.yml  library   exposed-modules:  Data.Vector.Storable.ByteString