Skip to content

Commit

Permalink
Bumped up version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
odkr committed May 3, 2019
1 parent 2bf6241 commit e3a89b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" .
)
Expand Down
4 changes: 2 additions & 2 deletions pandoc-zotxt.lua
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e3a89b7

Please sign in to comment.