1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

increased version

This commit is contained in:
Falk Werner 2020-06-05 15:29:24 +02:00
parent c9cef37086
commit b94530c034
5 changed files with 6 additions and 4 deletions

View File

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

View File

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

View File

@ -1 +1 @@
0.3.0
0.4.0

View File

@ -1,5 +1,7 @@
# webfuse changelog
## 0.4.0 _(unknown)_
## 0.3.0 _(Fri Jun 05 2020)_
### Breaking Changes

View File

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