diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | src/luaotfload-main.lua | 6 | ||||
-rw-r--r-- | src/luaotfload.sty | 4 |
3 files changed, 9 insertions, 5 deletions
@@ -1,5 +1,9 @@ Change History -------------- +2016/mm/dd, luaotfload v2.7: + * Rework lookup chaining. + * Combining glyphs from different fonts (``combo: ...`` requests). + * Glyph fallbacks. 2015/12/09, luaotfload v2.6 * Add ``sign`` target to makefile for automated package signing. diff --git a/src/luaotfload-main.lua b/src/luaotfload-main.lua index d5fdb9e..426aef7 100644 --- a/src/luaotfload-main.lua +++ b/src/luaotfload-main.lua @@ -11,7 +11,7 @@ config = config or { } luaotfload = luaotfload or { } local luaotfload = luaotfload luaotfload.log = luaotfload.log or { } -luaotfload.version = "2.6" +luaotfload.version = "2.7" luaotfload.loaders = { } luaotfload.min_luatex_version = 80 --- i. e. 0.80 luaotfload.fontloader_package = "reference" --- default: from current Context @@ -29,8 +29,8 @@ local authors = "\z luaotfload.module = { name = "luaotfload-main", - version = 2.60001, - date = "2015/12/09", + version = 2.70001, + date = "2016/02/19", description = "OpenType layout system.", author = authors, copyright = authors, diff --git a/src/luaotfload.sty b/src/luaotfload.sty index 836d819..a04e2d1 100644 --- a/src/luaotfload.sty +++ b/src/luaotfload.sty @@ -1,4 +1,4 @@ -%% Copyright (C) 2009-2015 +%% Copyright (C) 2009-2016 %% %% by Elie Roux <elie.roux@telecom-bretagne.eu> %% and Khaled Hosny <khaledhosny@eglug.org> @@ -41,7 +41,7 @@ \ProvidesPackage{luaotfload}% %% FIXME The date is meaningless, we need to find a way to %% use the git revision instead. - [2015/12/09 v2.6 OpenType layout system] + [2016/02/19 v2.7 OpenType layout system] \fi \directlua{ require('luaotfload-main') |