elynx-tools 0.8.0.0 → 0.9.0.0
raw patch · 3 files changed
+12/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- ELynx.Tools.ELynx: type ELynx a = ReaderT (Environment a) IO
+ ELynx.Tools.ELynx: type ELynx a = ReaderT Environment a IO
- ELynx.Tools.Options: createCommandReproducible :: forall a b. Reproducible a => (a -> b) -> Mod CommandFields b
+ ELynx.Tools.Options: createCommandReproducible :: Reproducible a => (a -> b) -> Mod CommandFields b
- ELynx.Tools.Options: parseArguments :: forall a. Reproducible a => IO (Arguments a)
+ ELynx.Tools.Options: parseArguments :: Reproducible a => IO (Arguments a)
- ELynx.Tools.Reproduction: getReproductionHash :: forall a. Reproducible a => Reproduction a -> String
+ ELynx.Tools.Reproduction: getReproductionHash :: Reproducible a => Reproduction a -> String
- ELynx.Tools.Reproduction: writeReproduction :: forall a. (Eq a, Show a, Reproducible a, ToJSON a) => String -> a -> IO ()
+ ELynx.Tools.Reproduction: writeReproduction :: (Eq a, Show a, Reproducible a, ToJSON a) => String -> a -> IO ()
Files
- ChangeLog.md +6/−0
- README.md +5/−5
- elynx-tools.cabal +1/−1
ChangeLog.md view
@@ -5,6 +5,12 @@ ## Unreleased changes +## Version 0.9.0.0++- Toolchain update+- Update to random version 1.3++ ## Version 0.8.0.0 - Adapt to breaking changes in upstream libraries (`data-default`).
README.md view
@@ -2,7 +2,7 @@ # The ELynx Suite -Version: 0.8.0.0.+Version: 0.9.0.0. Reproducible evolution made easy. <p align="center"><img src="https://travis-ci.org/dschrempf/elynx.svg?branch=master"/></p>@@ -73,9 +73,9 @@ # OR: stack exec slynx -- --help # OR: slynx --help - ELynx Suite version 0.8.0.0.+ ELynx Suite version 0.9.0.0. Developed by Dominik Schrempf.- Compiled on October 27, 2024, at 07:14 am, UTC.+ Compiled on August 11, 2025, at 07:19 am, UTC. Usage: slynx [-v|--verbosity VALUE] [-o|--output-file-basename NAME] [-f|--force] [--no-elynx-file] COMMAND@@ -143,9 +143,9 @@ # OR: stack exec slynx -- simulate --help # OR: slynx simulate --help - ELynx Suite version 0.8.0.0.+ ELynx Suite version 0.9.0.0. Developed by Dominik Schrempf.- Compiled on October 27, 2024, at 07:14 am, UTC.+ Compiled on August 11, 2025, at 07:19 am, UTC. Usage: slynx simulate (-t|--tree-file Name) [-s|--substitution-model MODEL] [-m|--mixture-model MODEL] [-n|--global-normalization]
elynx-tools.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: elynx-tools-version: 0.8.0.0+version: 0.9.0.0 synopsis: Tools for ELynx description: Please see the README on GitHub at <https://github.com/dschrempf/elynx>.