Bump version number

This commit is contained in:
Francesco Abbate 2021-02-19 13:54:10 +01:00
parent 2a0846b604
commit 0233941fe9
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ are actually resizable.
Add config mechanism to disable a plugin by setting
`config.<plugin-name> = 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.

View File

@ -1,4 +1,4 @@
global {VERSION = "1.16"}
global {VERSION = "1.16.0"}
local config = {}

View File

@ -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)