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

Commit

Permalink
Cut v3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fizzadar committed Apr 29, 2019
1 parent d58f60e commit 0ecc34d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 3.5

+ Replace `markdown.lua` with `lua-discount`
+ Add `discount_options` configuration setting
+ Remove caching/`--no-cache` over-optimisation
+ Lua 5.3+ support
+ Support for `.markdown` files
+ Fixes for copying directory on Windows

# v3.4

+ Support for newer Lua versions
Expand Down
17 changes: 8 additions & 9 deletions luapress-3.4-0.rockspec → luapress-3.5-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package = 'Luapress'
version = '3.4-0'
version = '3.5-0'

source = {
url = 'git://github.com/Fizzadar/Luapress.git',
tag = 'v3.4'
tag = 'v3.5',
}

description = {
summary = 'Luapress builds static sites from markdown files',
homepage = 'https://github.com/Fizzadar/Luapress',
license = 'MIT'
license = 'MIT',
}

dependencies = {
Expand All @@ -26,25 +26,24 @@ dependencies = {
build = {
type = 'builtin',
modules = {
['luapress'] = 'luapress/luapress.lua'
['luapress'] = 'luapress/luapress.lua',
},
install = {
lua = {
['luapress.config'] = 'luapress/config.lua',
['luapress.template'] = 'luapress/template.lua',
['luapress.util'] = 'luapress/util.lua',
['luapress.default_config'] = 'luapress/default_config.lua',
['luapress.lib.markdown'] = 'luapress/lib/markdown.lua',
['luapress.lib.table_to_lua'] = 'luapress/lib/table_to_lua.lua',
['luapress.lib.watch_directory'] = 'luapress/lib/watch_directory.lua',
['luapress.lib.cli'] = 'luapress/lib/cli.lua'
['luapress.lib.cli'] = 'luapress/lib/cli.lua',
},
bin = {
'bin/luapress'
'bin/luapress',
}
},
copy_directories = {
'plugins',
'template'
}
'template',
},
}
2 changes: 1 addition & 1 deletion luapress/config.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
return {
version = '3.4'
version = '3.5'
}

0 comments on commit 0ecc34d

Please sign in to comment.