hPDB 1.2.0.9 → 1.2.0.10
raw patch · 2 files changed
+6/−3 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Bio.PDB: fastacode2resname :: Char -> ByteString
+ Bio.PDB: fastacode2resname :: Char -> String
- Bio.PDB: itfoldM :: Monad m => (c -> b -> m c) -> c -> a -> m c
+ Bio.PDB: itfoldM :: (Iterable a b, Monad m) => (c -> b -> m c) -> c -> a -> m c
- Bio.PDB: itfoldl :: (c -> b -> c) -> c -> a -> c
+ Bio.PDB: itfoldl :: Iterable a b => (c -> b -> c) -> c -> a -> c
- Bio.PDB: itfoldl' :: (c -> b -> c) -> c -> a -> c
+ Bio.PDB: itfoldl' :: Iterable a b => (c -> b -> c) -> c -> a -> c
- Bio.PDB: itfoldr :: (b -> c -> c) -> c -> a -> c
+ Bio.PDB: itfoldr :: Iterable a b => (b -> c -> c) -> c -> a -> c
- Bio.PDB: itlength :: Proxy * b -> a -> Int
+ Bio.PDB: itlength :: Iterable a b => Proxy * b -> a -> Int
- Bio.PDB: itmap :: (b -> b) -> a -> a
+ Bio.PDB: itmap :: Iterable a b => (b -> b) -> a -> a
- Bio.PDB: itmapM :: Monad m => (b -> m b) -> a -> m a
+ Bio.PDB: itmapM :: (Iterable a b, Monad m) => (b -> m b) -> a -> m a
- Bio.PDB: resname2fastacode :: ByteString -> Char
+ Bio.PDB: resname2fastacode :: String -> Char
- Bio.PDB.Fasta: defaultResname :: ByteString
+ Bio.PDB.Fasta: defaultResname :: String
- Bio.PDB.Fasta: fastacode2resname :: Char -> ByteString
+ Bio.PDB.Fasta: fastacode2resname :: Char -> String
- Bio.PDB.Fasta: resname2fastacode :: ByteString -> Char
+ Bio.PDB.Fasta: resname2fastacode :: String -> Char
- Bio.PDB.Iterable: itfoldM :: Monad m => (c -> b -> m c) -> c -> a -> m c
+ Bio.PDB.Iterable: itfoldM :: (Iterable a b, Monad m) => (c -> b -> m c) -> c -> a -> m c
- Bio.PDB.Iterable: itfoldl :: (c -> b -> c) -> c -> a -> c
+ Bio.PDB.Iterable: itfoldl :: Iterable a b => (c -> b -> c) -> c -> a -> c
- Bio.PDB.Iterable: itfoldl' :: (c -> b -> c) -> c -> a -> c
+ Bio.PDB.Iterable: itfoldl' :: Iterable a b => (c -> b -> c) -> c -> a -> c
- Bio.PDB.Iterable: itfoldr :: (b -> c -> c) -> c -> a -> c
+ Bio.PDB.Iterable: itfoldr :: Iterable a b => (b -> c -> c) -> c -> a -> c
- Bio.PDB.Iterable: itlength :: Proxy * b -> a -> Int
+ Bio.PDB.Iterable: itlength :: Iterable a b => Proxy * b -> a -> Int
- Bio.PDB.Iterable: itmap :: (b -> b) -> a -> a
+ Bio.PDB.Iterable: itmap :: Iterable a b => (b -> b) -> a -> a
- Bio.PDB.Iterable: itmapM :: Monad m => (b -> m b) -> a -> m a
+ Bio.PDB.Iterable: itmapM :: (Iterable a b, Monad m) => (b -> m b) -> a -> m a
- Bio.PDB.Structure.List: tempLength :: MonadTrans t1 => TempList s t -> t1 (ST s) Int
+ Bio.PDB.Structure.List: tempLength :: MonadTrans t => TempList s t1 -> t (ST s) Int
Files
- changelog +3/−0
- hPDB.cabal +3/−3
changelog view
@@ -1,4 +1,7 @@ -*-Changelog-*-+1.2.0.10 Nov 2017+ * Relax deps for GHC 8.2+ 1.2.0.9 Jun 2016 * Use hashmap for element properties. Great thanks to Ben Gamari:
hPDB.cabal view
@@ -1,5 +1,5 @@ name: hPDB-version: 1.2.0.9+version: 1.2.0.10 synopsis: Protein Databank file format library homepage: https://github.com/BioHaskell/hPDB stability: stable@@ -32,7 +32,7 @@ build-type: Simple cabal-version: >=1.8-tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.1+tested-with: GHC==7.8.4,GHC==7.10.3,GHC==7.6.3,GHC==8.0.1,GHC==8.2.2 extra-source-files: README.md INSTALL AUTHORS changelog source-repository head@@ -57,7 +57,7 @@ Library ghc-options: -fspec-constr-count=4 -O3 - build-depends: base>=4.0 && <4.10,+ build-depends: base>=4.0 && <4.11, ghc-prim, directory, mtl,