From e3a89b7fd7e1a086762ab1dfa08f973f46486e98 Mon Sep 17 00:00:00 2001 From: Odin Kroeger Date: Fri, 3 May 2019 14:50:06 +0200 Subject: [PATCH] Bumped up version number. --- README.md | 6 +++--- pandoc-zotxt.lua | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4866c89..3f46339 100644 --- a/README.md +++ b/README.md @@ -45,14 +45,14 @@ following commands into a bourne shell: ```sh ( set -Cefu - NAME=pandoc-zotxt.lua VERS=0.3.10 + NAME=pandoc-zotxt.lua VERS=0.3.11 URL="https://github.com/odkr/${NAME:?}/archive/v${VERS:?}.tar.gz" FILTERS="${HOME:?}/.pandoc/filters" mkdir -p "${FILTERS:?}" cd -P "$FILTERS" || exit { - curl -LsS "$URL" || ERR=$? - [ "${ERR-0}" -eq 127 ] && wget -q -O - "$URL" + curl -L "$URL" || ERR=$? + [ "${ERR-0}" -eq 127 ] && wget -O - "$URL" } | tar xz mv "$NAME-$VERS/pandoc-zotxt.lua" . ) diff --git a/pandoc-zotxt.lua b/pandoc-zotxt.lua index ae0d3f0..9fa9d45 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.10 +-- @release 0.3.11 -- @author Odin Kroeger -- @copyright 2018, 2019 Odin Kroeger -- @license MIT @@ -36,7 +36,7 @@ local ZOTXT_QUERY_URL = 'http://localhost:23119/zotxt/items?' local ZOTXT_KEYTYPES = {'easykey', 'betterbibtexkey', 'key'} -- The version of this script. -local VERSION = '0.3.10' +local VERSION = '0.3.11' -- Shorthands