From 0233941fe91d460b2fd804a2e11992e8ffe62af0 Mon Sep 17 00:00:00 2001 From: Francesco Abbate Date: Fri, 19 Feb 2021 13:54:10 +0100 Subject: [PATCH] Bump version number --- changelog.md | 2 +- data/core/config.lua | 2 +- meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)