diff --git a/changelog.md b/changelog.md index 743376d..dc3a4bf 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # webfuse-provider changelog +## 0.2.0 _(unknown)_ + +* *Feature*: reduce required libwebsockets version to 4.0.0 + ## 0.1.0 _(Sat Jun 26 2020)_ * initial version diff --git a/meson.build b/meson.build index 333695c..830f109 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project('webfuse-provider', 'c', 'cpp', version: '0.4.0', license: 'LGPL-3.0+') without_tests = get_option('without_tests') without_examples = get_option('without_examples') -libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.13', required: false) +libwebsockets_dep = dependency('libwebsockets', version: '>=4.0.0', required: false) if not libwebsockets_dep.found() cmake = import('cmake') libwebsockets = cmake.subproject('libwebsockets')