summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--doc/luaotfload-main.tex4
-rw-r--r--src/luaotfload-auxiliary.lua6
-rw-r--r--src/luaotfload-configuration.lua4
-rw-r--r--src/luaotfload-main.lua12
-rwxr-xr-xsrc/luaotfload-tool.lua8
-rw-r--r--src/luaotfload.sty4
7 files changed, 20 insertions, 20 deletions
diff --git a/NEWS b/NEWS
index 0e0e5b0..01ef866 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
Change History
--------------
-2014/XX/XX, luaotfload v2.6
+2015/0X/XX, luaotfload v2.6
* Add ``sign`` target to makefile for automated package signing
* Add ``--dumpconf`` option to luaotfload-tool for generating configuration
files
diff --git a/doc/luaotfload-main.tex b/doc/luaotfload-main.tex
index 2e89ff0..c01beba 100644
--- a/doc/luaotfload-main.tex
+++ b/doc/luaotfload-main.tex
@@ -1,4 +1,4 @@
-%% Copyright (C) 2009-2014
+%% Copyright (C) 2009-2015
%%
%% by Elie Roux <elie.roux@telecom-bretagne.eu>
%% and Khaled Hosny <khaledhosny@eglug.org>
@@ -32,7 +32,7 @@
\beginfrontmatter
\setdocumenttitle {The \identifier{luaotfload} package}
- \setdocumentdate {2014/07/13 v2.5}
+ \setdocumentdate {2015/03/29 v2.6}
\setdocumentauthor {Elie Roux · Khaled Hosny · Philipp Gesang\\
Home: \hyperlink {https://github.com/lualatex/luaotfload}\\
Support: \email {lualatex-dev@tug.org}}
diff --git a/src/luaotfload-auxiliary.lua b/src/luaotfload-auxiliary.lua
index b3fa795..1ef581e 100644
--- a/src/luaotfload-auxiliary.lua
+++ b/src/luaotfload-auxiliary.lua
@@ -2,10 +2,10 @@
-----------------------------------------------------------------------
-- FILE: luaotfload-auxiliary.lua
-- DESCRIPTION: part of luaotfload
--- REQUIREMENTS: luaotfload 2.5
+-- REQUIREMENTS: luaotfload 2.6
-- AUTHOR: Khaled Hosny, Élie Roux, Philipp Gesang
--- VERSION: 2.5
--- MODIFIED: 2014-01-02 21:24:25+0100
+-- VERSION: 2.6
+-- MODIFIED: 2015-03-29 12:43:26+0200
-----------------------------------------------------------------------
--
diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua
index b198697..657d671 100644
--- a/src/luaotfload-configuration.lua
+++ b/src/luaotfload-configuration.lua
@@ -2,10 +2,10 @@
-------------------------------------------------------------------------------
-- FILE: luaotfload-configuration.lua
-- DESCRIPTION: config file reader
--- REQUIREMENTS: Luaotfload 2.5 or above
+-- REQUIREMENTS: Luaotfload 2.6 or above
-- AUTHOR: Philipp Gesang (Phg), <phg42.2a@gmail.com>
-- VERSION: same as Luaotfload
--- MODIFIED: 2015-03-16 07:48:58+0100
+-- MODIFIED: 2015-03-29 12:46:43+0200
-------------------------------------------------------------------------------
--
diff --git a/src/luaotfload-main.lua b/src/luaotfload-main.lua
index ee8966c..e6bb782 100644
--- a/src/luaotfload-main.lua
+++ b/src/luaotfload-main.lua
@@ -1,10 +1,10 @@
-----------------------------------------------------------------------
-- FILE: luaotfload-main.lua
-- DESCRIPTION: Luatex fontloader initialization
--- REQUIREMENTS: luatex v.0.79 or later; packages lualibs, luatexbase
+-- REQUIREMENTS: luatex v.0.80 or later; packages lualibs, luatexbase
-- AUTHOR: Élie Roux, Khaled Hosny, Philipp Gesang
-- VERSION: same as Luaotfload
--- MODIFIED: 2015-03-11 07:49:20+0100
+-- MODIFIED: 2015-03-29 12:41:09+0200
-----------------------------------------------------------------------
--
--- Note:
@@ -14,7 +14,7 @@
--- markup.
if not modules then modules = { } end modules ["luaotfload-main"] = {
- version = "2.5",
+ version = "2.6",
comment = "fontloader initialization",
author = "Hans Hagen, Khaled Hosny, Elie Roux, Philipp Gesang",
copyright = "PRAGMA ADE / ConTeXt Development Team",
@@ -48,12 +48,12 @@ local initial_log_level = 0
luaotfload = luaotfload or { }
local luaotfload = luaotfload
luaotfload.log = luaotfload.log or { }
-luaotfload.version = "2.5-2" -- FIXME version belongs in common init
+luaotfload.version = "2.6" -- FIXME version belongs in common init
luaotfload.module = {
name = "luaotfload-main",
- version = 2.50001,
- date = "2014/07/16",
+ version = 2.60000,
+ date = "2015/03/29",
description = "OpenType layout system.",
author = "Elie Roux & Hans Hagen",
copyright = "Elie Roux",
diff --git a/src/luaotfload-tool.lua b/src/luaotfload-tool.lua
index 2330aee..36c23bd 100755
--- a/src/luaotfload-tool.lua
+++ b/src/luaotfload-tool.lua
@@ -2,15 +2,15 @@
-----------------------------------------------------------------------
-- FILE: luaotfload-tool.lua
-- DESCRIPTION: database functionality
--- REQUIREMENTS: luaotfload 2.5
+-- REQUIREMENTS: luaotfload 2.6
-- AUTHOR: Khaled Hosny, Élie Roux, Philipp Gesang
--- VERSION: 2.5
+-- VERSION: 2.6
-- LICENSE: GPL v2.0
--- MODIFIED: 2014-07-24 22:10:32+0200
+-- MODIFIED: 2015-03-29 12:43:00+0200
-----------------------------------------------------------------------
luaotfload = luaotfload or { }
-local version = "2.5-2" --- <int: major>.<int: minor>-<int: fixes>
+local version = "2.6"
luaotfload.version = version
luaotfload.self = "luaotfload-tool"
diff --git a/src/luaotfload.sty b/src/luaotfload.sty
index 4ebe3cb..100fb72 100644
--- a/src/luaotfload.sty
+++ b/src/luaotfload.sty
@@ -1,4 +1,4 @@
-%% Copyright (C) 2009-2014
+%% Copyright (C) 2009-2015
%%
%% by Elie Roux <elie.roux@telecom-bretagne.eu>
%% and Khaled Hosny <khaledhosny@eglug.org>
@@ -40,7 +40,7 @@
\ProvidesPackage{luaotfload}%
%% FIXME The date is meaningless, we need to find a way to
%% use the git revision instead.
- [2014/07/24 v2.5-2 OpenType layout system]
+ [2015/03/29 v2.6 OpenType layout system]
\RequirePackage{luatexbase}
\fi
\RequireLuaModule{luaotfload-main}