diff --git a/changelog.md b/changelog.md index a2399d18..a31bfd1a 100644 --- a/changelog.md +++ b/changelog.md @@ -14,7 +14,7 @@ are actually resizable. Add config mechanism to disable a plugin by setting `config. = false`. -Improve the "detect indent" plugin to take into account syntax and exclude comments +Improve the "detect indent" plugin to take into account the syntax and exclude comments for much accurate results. Add command `root:close-all` to close all the documents currently opened. diff --git a/data/core/config.lua b/data/core/config.lua index cc2133a3..fb1e0fa5 100644 --- a/data/core/config.lua +++ b/data/core/config.lua @@ -1,4 +1,4 @@ -global {VERSION = "1.16"} +global {VERSION = "1.16.0"} local config = {} diff --git a/meson.build b/meson.build index edd6a730..b060da12 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('lite', 'c', 'cpp', version: '1.10', default_options : ['c_std=gnu11', 'cpp_std=c++03']) +project('lite', 'c', 'cpp', version: '1.0', default_options : ['c_std=gnu11', 'cpp_std=c++03']) cc = meson.get_compiler('c') libm = cc.find_library('m', required : false)