/
githubmirror
/
pandoc
Обзор
Документация
Войти
/
githubmirror
/
pandoc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Text/Pandoc/Version.hs
28 строк
773 B
John MacFarlane
Update copyright dates to 2024.
26 апр 2024, 04:16
26 апр 2024, 04:16
03630a2
Код
Авторство
О чём код?
{-# LANGUAGE CPP #-} {- | Module : Text.Pandoc.Version Copyright : Copyright (C) 2022-2024 John MacFarlane License : GNU GPL, version 2 or above Maintainer : John MacFarlane <jgm@berkeley.edu> Stability : alpha Portability : portable Version information. -} module Text.Pandoc.Version ( pandocVersion, pandocVersionText ) where import Data.Version (Version, showVersion) import Paths_pandoc (version) import qualified Data.Text as T -- | Version number of pandoc library. pandocVersion :: Version pandocVersion = version -- | Text representation of the library's version number. pandocVersionText :: T.Text pandocVersionText = T.pack $ showVersion version