From cbbb6b5d3eec861635f4d568fd44ddfd241b1bcd Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 19 Jul 2020 12:09:20 +0200 Subject: [PATCH] set version to 0.6.0 --- Doxyfile | 2 +- VERSION | 2 +- changelog.md | 4 +++- meson.build | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Doxyfile b/Doxyfile index 46554e7..4ee1c14 100644 --- a/Doxyfile +++ b/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "webfuse" -PROJECT_NUMBER = 0.5.0 +PROJECT_NUMBER = 0.6.0 PROJECT_BRIEF = "Websocket filesystem based on libfuse" PROJECT_LOGO = OUTPUT_DIRECTORY = "doc/api" diff --git a/VERSION b/VERSION index 8f0916f..a918a2a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.0 +0.6.0 diff --git a/changelog.md b/changelog.md index 0ff4574..22a620d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,7 @@ # webfuse changelog +## 0.6.0 _(unknown)_ + ## 0.5.0 _(Sun Jul 19 2020)_ * __Feature:__ Remove dependency to libjansson @@ -11,7 +13,7 @@ * __Breaking Change:__ Remove CMake support (change build system to meson) * __Breaking Change:__ Make argument credentials const in `wf_authenticate_fn` * __Breaking Change:__ Moved provider library into [separate project](https://github.com/falk-werner/webfuse-provider) -* __Breaking Change:__Renamed library (libwebfuse_adapter -> libwebfuse) +* __Breaking Change:__ Renamed library (libwebfuse_adapter -> libwebfuse) * __Feature:__ Add adapter client implementation * __Feature:__ Allow system to choose port of webfuse server (by setting port in `wf_server_config` to 0) * __Fix:__ Fix meson build failure when gtest or jansson are not installed diff --git a/meson.build b/meson.build index b417804..4c39688 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('webfuse', 'c', 'cpp', version: '0.5.0', license: 'LGPL-3.0+') +project('webfuse', 'c', 'cpp', version: '0.6.0', license: 'LGPL-3.0+') without_tests = get_option('without_tests')