Skip to content
This repository was archived by the owner on Nov 21, 2023. It is now read-only.

Commit 0ecc34d

Browse files
committed
Cut v3.5.
1 parent d58f60e commit 0ecc34d

3 files changed

Lines changed: 18 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 3.5
2+
3+
+ Replace `markdown.lua` with `lua-discount`
4+
+ Add `discount_options` configuration setting
5+
+ Remove caching/`--no-cache` over-optimisation
6+
+ Lua 5.3+ support
7+
+ Support for `.markdown` files
8+
+ Fixes for copying directory on Windows
9+
110
# v3.4
211

312
+ Support for newer Lua versions
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package = 'Luapress'
2-
version = '3.4-0'
2+
version = '3.5-0'
33

44
source = {
55
url = 'git://github.com/Fizzadar/Luapress.git',
6-
tag = 'v3.4'
6+
tag = 'v3.5',
77
}
88

99
description = {
1010
summary = 'Luapress builds static sites from markdown files',
1111
homepage = 'https://github.com/Fizzadar/Luapress',
12-
license = 'MIT'
12+
license = 'MIT',
1313
}
1414

1515
dependencies = {
@@ -26,25 +26,24 @@ dependencies = {
2626
build = {
2727
type = 'builtin',
2828
modules = {
29-
['luapress'] = 'luapress/luapress.lua'
29+
['luapress'] = 'luapress/luapress.lua',
3030
},
3131
install = {
3232
lua = {
3333
['luapress.config'] = 'luapress/config.lua',
3434
['luapress.template'] = 'luapress/template.lua',
3535
['luapress.util'] = 'luapress/util.lua',
3636
['luapress.default_config'] = 'luapress/default_config.lua',
37-
['luapress.lib.markdown'] = 'luapress/lib/markdown.lua',
3837
['luapress.lib.table_to_lua'] = 'luapress/lib/table_to_lua.lua',
3938
['luapress.lib.watch_directory'] = 'luapress/lib/watch_directory.lua',
40-
['luapress.lib.cli'] = 'luapress/lib/cli.lua'
39+
['luapress.lib.cli'] = 'luapress/lib/cli.lua',
4140
},
4241
bin = {
43-
'bin/luapress'
42+
'bin/luapress',
4443
}
4544
},
4645
copy_directories = {
4746
'plugins',
48-
'template'
49-
}
47+
'template',
48+
},
5049
}

luapress/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
return {
2-
version = '3.4'
2+
version = '3.5'
33
}

0 commit comments

Comments
 (0)