diff --git a/README.md b/README.md index 122b242..deecdf7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ following commands into a bourne shell: ```sh ( set -Cefu - NAME=pandoc-zotxt.lua VERS=0.3.6 + NAME=pandoc-zotxt.lua VERS=0.3.7 URL="https://github.com/odkr/${NAME:?}/archive/v${VERS:?}.tar.gz" FILTERS="${HOME:?}/.pandoc/filters" mkdir -p "${FILTERS:?}" diff --git a/pandoc-zotxt.lua b/pandoc-zotxt.lua index b7c6587..49892ee 100644 --- a/pandoc-zotxt.lua +++ b/pandoc-zotxt.lua @@ -1,7 +1,7 @@ --- pandoc-zotxt.lua Looks up citations in Zotero and adds references. -- -- @script pandoc-zotxt.lua --- @release 0.3.6 +-- @release 0.3.7 -- @author Odin Kroeger -- @copyright 2018, 2019 Odin Kroeger -- @license MIT @@ -43,7 +43,7 @@ local ZOTXT_KEYTYPES = {'easykey', 'betterbibtexkey', 'key'} local ZOTXT_KEYTYPE_RE = {'^@%a+:%d+%w*$', '^@%a+%d+%w*$', '^@[A-Z0-9]+$'} -- The version of this script. -local VERSION = '0.3.6' +local VERSION = '0.3.7' -- The path seperator of the operating system local PATH_SEP = package.config:sub(1, 1)