From 2d2a7a7a0cf29b9b41fe58d76437a1fa70c679f1 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 19 Jul 2020 11:11:23 +0200 Subject: [PATCH 1/2] chore: rework changelog structure --- changelog.md | 66 ++++++++++++++++++---------------------------------- 1 file changed, 22 insertions(+), 44 deletions(-) diff --git a/changelog.md b/changelog.md index b861c1d..e727376 100644 --- a/changelog.md +++ b/changelog.md @@ -1,59 +1,37 @@ # webfuse changelog -## 0.5.0 _(unknown)_ +## 0.5.0 _(Sun Jul 19 2020)_ -### Features - -* Removed dependency to libjansson - -### Fixes - -* Fix deadlock reading files larger that a few KBytes (Isseue #82) +* *Feature*: Remove dependency to libjansson +* *Feature*: Increase performace +* *Fix*: Fix deadlock reading files larger that a few KBytes (Isseue #82) ## 0.4.0 _(Sun Jul 05 2020)_ -### Breaking Changes - -* Remove CMake support (change build system to meson) -* Make argument credentials const in `wf_authenticate_fn` -* Moved provider library into [separate project](https://github.com/falk-werner/webfuse-provider) -* Renamed library (libwebfuse_adapter -> libwebfuse) - -### New Features - -* Add adapter client implementation -* Allow system to choose port of webfuse server (by setting port in `wf_server_config` to 0) - -### Fixes - -* Fix meson build failure when gtest or jansson are not installed -* Fix crash if libfuse is not available at runtime +* *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) +* *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 +* *Fix*: Fix crash if libfuse is not available at runtime ## 0.3.0 _(Fri Jun 05 2020)_ -### Breaking Changes - -* Remove argument `timeout_ms` in `wf_server_service` and `wfp_client_service` -* Remove `wfp_client_ontimer` - -### New Features - -* Add meson build support -* Add `wf_server_interrupt` and `wfp_client_interrupt` +* *Breaking Change*: Remove argument `timeout_ms` in `wf_server_service` and `wfp_client_service` +* *Breaking Change*: Remove `wfp_client_ontimer` +* *Feature*: Add meson build support +* *Feature*: Add `wf_server_interrupt` and `wfp_client_interrupt` ## 0.2.0 _(Sun Mar 01 2020)_ -### New Features - -* Add authentication support of provider -* Add API documentation (doxygen) -* Add `mountpoint_factory` -* Add option to build adapter and provider libraries separately - -### Fixes - -* Fix crash of example when using option `-h` -* Fix error in `static_filesystem` providen when adding multiple files to same directory +* *Feature*: Add authentication support of provider +* *Feature*: Add API documentation (doxygen) +* *Feature*: Add `mountpoint_factory` +* *Feature*: Add option to build adapter and provider libraries separately +* *Fix*: Fix crash of example when using option `-h` +* *Fix*: Fix error in `static_filesystem` providen when adding multiple files to same directory ## 0.1.0 _(Sat Apr 27 2019)_ From f4240a220751ad3ad55ee50981d7fd8cc108af96 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 19 Jul 2020 11:19:25 +0200 Subject: [PATCH 2/2] fix: changed emphasis markers --- changelog.md | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/changelog.md b/changelog.md index e727376..0ff4574 100644 --- a/changelog.md +++ b/changelog.md @@ -2,36 +2,36 @@ ## 0.5.0 _(Sun Jul 19 2020)_ -* *Feature*: Remove dependency to libjansson -* *Feature*: Increase performace -* *Fix*: Fix deadlock reading files larger that a few KBytes (Isseue #82) +* __Feature:__ Remove dependency to libjansson +* __Feature:__ Increase performace +* __Fix:__ Fix deadlock reading files larger that a few KBytes (Isseue #82) ## 0.4.0 _(Sun Jul 05 2020)_ -* *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) -* *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 -* *Fix*: Fix crash if libfuse is not available at runtime +* __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) +* __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 +* __Fix:__ Fix crash if libfuse is not available at runtime ## 0.3.0 _(Fri Jun 05 2020)_ -* *Breaking Change*: Remove argument `timeout_ms` in `wf_server_service` and `wfp_client_service` -* *Breaking Change*: Remove `wfp_client_ontimer` -* *Feature*: Add meson build support -* *Feature*: Add `wf_server_interrupt` and `wfp_client_interrupt` +* __Breaking Change:__ Remove argument `timeout_ms` in `wf_server_service` and `wfp_client_service` +* __Breaking Change:__ Remove `wfp_client_ontimer` +* __Feature:__ Add meson build support +* __Feature:__ Add `wf_server_interrupt` and `wfp_client_interrupt` ## 0.2.0 _(Sun Mar 01 2020)_ -* *Feature*: Add authentication support of provider -* *Feature*: Add API documentation (doxygen) -* *Feature*: Add `mountpoint_factory` -* *Feature*: Add option to build adapter and provider libraries separately -* *Fix*: Fix crash of example when using option `-h` -* *Fix*: Fix error in `static_filesystem` providen when adding multiple files to same directory +* __Feature:__ Add authentication support of provider +* __Feature:__ Add API documentation (doxygen) +* __Feature:__ Add `mountpoint_factory` +* __Feature:__ Add option to build adapter and provider libraries separately +* __Fix:__ Fix crash of example when using option `-h` +* __Fix:__ Fix error in `static_filesystem` providen when adding multiple files to same directory ## 0.1.0 _(Sat Apr 27 2019)_