diff options
Diffstat (limited to 'Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua b/Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua index 5bd712b8634..ff2006ebf28 100644 --- a/Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua +++ b/Master/texmf-dist/tex/luatex/gregoriotex/gregoriotex.lua @@ -1,6 +1,6 @@ --GregorioTeX Lua file. -- ---Copyright (C) 2008-2017 The Gregorio Project (see CONTRIBUTORS.md) +--Copyright (C) 2008-2018 The Gregorio Project (see CONTRIBUTORS.md) -- --This file is part of Gregorio. -- @@ -24,16 +24,16 @@ local hpack, traverse, traverse_id, has_attribute, count, remove, insert_after, gregoriotex = gregoriotex or {} local gregoriotex = gregoriotex -local internalversion = '5.1.0' -- GREGORIO_VERSION (comment used by VersionManager.py) +local internalversion = '5.1.1' -- GREGORIO_VERSION (comment used by VersionManager.py) local err, warn, info, log = luatexbase.provides_module({ name = "gregoriotex", - version = '5.1.0', -- GREGORIO_VERSION + version = '5.1.1', -- GREGORIO_VERSION greinternalversion = internalversion, - date = "2018/03/11", -- GREGORIO_DATE_LTX + date = "2018/03/25", -- GREGORIO_DATE_LTX description = "GregorioTeX module.", author = "The Gregorio Project (see CONTRIBUTORS.md)", - copyright = "2008-2017 - The Gregorio Project", + copyright = "2008-2018 - The Gregorio Project", license = "GPLv3+", }) @@ -146,7 +146,7 @@ local function gregorio_exe() local exe_version -- first look for one with the exact version - real_gregorio_exe = 'gregorio-5_1_0' -- FILENAME_VERSION + real_gregorio_exe = 'gregorio-5_1_1' -- FILENAME_VERSION local cmd = string.format("%s -o %%s %s", real_gregorio_exe, test_snippet_filename) exe_version = get_prog_output(cmd, '*line') |