Skip to content

Commit

Permalink
RLS Version 1.4.0-beta1
Browse files Browse the repository at this point in the history
- Newer version of megahit
- Builtin gmgc module
- Faster internals
  • Loading branch information
luispedro committed May 23, 2022
1 parent 496567a commit 3dfa267
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 1.4.0
Version 1.4.0 2022-05-23 (beta) by luispedro
* write() returns the filename used
* Switch to tasty test framework
* Update to LTS-19
Expand Down
6 changes: 3 additions & 3 deletions Execs/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ modeExec (CmdArgs.CheckInstallMode verbose) = runNGLessIO "Checking install" $ d
main' = do
let metainfo = fullDesc <> footer foottext <> progDesc "ngless implement the NGLess language"
foottext = concat [
"ngless v", Version.versionStr, "(C) NGLess Authors 2013-2022\n",
"ngless v", Version.versionStrLong, "(C) NGLess Authors 2013-2022\n",
"For more information:\n",
"\thttps://ngless.embl.de/\n",
"For comments/discussion:\n",
Expand All @@ -352,12 +352,12 @@ main' = do
"https://doi.org/10.1186/s40168-019-0684-8.\n"
]
versioner =
(infoOption ("ngless v" ++ Version.versionStr ++ " (release date: " ++ Version.dateStr ++ ")")
(infoOption ("ngless v" ++ Version.versionStrLong ++ " (release date: " ++ Version.dateStr ++ ")")
(long "version" <> short 'V' <> help "print version and exit"))
<*>
(infoOption Version.versionStr (long "version-short" <> help "print just version string (useful for scripting)"))
<*>
(infoOption ("ngless v" ++ Version.versionStr ++ " (release date: " ++ Version.dateStr ++ "; embedded binaries: " ++ Version.embeddedStr ++ ")")
(infoOption ("ngless v" ++ Version.versionStr ++ " (full version: " ++ Version.versionStrLong ++ "; release date: " ++ Version.dateStr ++ "; embedded binaries: " ++ Version.embeddedStr ++ ")")
(long "version-debug" <> help "print detailed version information"))
<*>
(infoOption Version.dateStr (long "date-short" <> help "print just release date string (useful for scripting)"))
Expand Down
6 changes: 5 additions & 1 deletion NGLess/Version.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{-# LANGUAGE CPP #-}
module Version
( versionStr
, versionStrLong
, dateStr
, embeddedStr
) where
Expand All @@ -15,8 +16,11 @@ import Paths_NGLess (version)
versionStr :: String
versionStr = showVersion version

versionStrLong :: String
versionStrLong = "1.4.0-beta1"

dateStr :: String
dateStr = "Unreleased"
dateStr = "May 23 2022"

embeddedStr :: String
#ifdef NO_EMBED_SAMTOOLS_BWA
Expand Down
2 changes: 2 additions & 0 deletions docs/sources/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ What's New (History)
Version 1.4.0
-------------

Released *23 May 2022* (Beta release)

Improvements
~~~~~~~~~~~~

Expand Down

0 comments on commit 3dfa267

Please sign in to comment.