From b94530c0345cb118f741f48bdf85b11619817b9c Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Fri, 5 Jun 2020 15:29:24 +0200 Subject: [PATCH] increased version --- CMakeLists.txt | 2 +- Doxyfile | 2 +- VERSION | 2 +- changelog.md | 2 ++ meson.build | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e3f18c..aef7498 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.10) -project(webfuse VERSION 0.3.0 DESCRIPTION "Websocket filesystem based on libfuse") +project(webfuse VERSION 0.4.0 DESCRIPTION "Websocket filesystem based on libfuse") option(WITHOUT_TESTS "disable unit tests" OFF) option(WITHOUT_ADAPTER "disable adapter library" OFF) diff --git a/Doxyfile b/Doxyfile index 4f4ccdf..adf69af 100644 --- a/Doxyfile +++ b/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "webfuse" -PROJECT_NUMBER = 0.3.0 +PROJECT_NUMBER = 0.4.0 PROJECT_BRIEF = "Websocket filesystem based on libfuse" PROJECT_LOGO = OUTPUT_DIRECTORY = "doc/api" diff --git a/VERSION b/VERSION index 0d91a54..1d0ba9e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.4.0 diff --git a/changelog.md b/changelog.md index ca852f4..9b4b3de 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,7 @@ # webfuse changelog +## 0.4.0 _(unknown)_ + ## 0.3.0 _(Fri Jun 05 2020)_ ### Breaking Changes diff --git a/meson.build b/meson.build index 11a1487..cea37e2 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('webfuse', 'c', 'cpp', version: '0.3.0', license: 'LGPL-3.0+') +project('webfuse', 'c', 'cpp', version: '0.4.0', license: 'LGPL-3.0+') without_adapter = get_option('without_adapter') without_provider = get_option('without_provider')