Bump version to 0.2.0

This commit is contained in:
Xavier Del Campo Romero 2024-02-12 21:21:57 +01:00
parent 46a9d4efb9
commit 6ceae16a20
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
25 changed files with 26 additions and 26 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.13.5)
option(BUILD_EXAMPLES "Build examples" ON)
project(web LANGUAGES C VERSION 0.1.0)
project(web LANGUAGES C VERSION 0.2.0)
add_library(${PROJECT_NAME}
handler.c
html.c
@ -8,7 +8,7 @@ add_library(${PROJECT_NAME}
server.c
wildcard_cmp.c)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_LIST_DIR}/cmake)
find_package(dynstr 0.1.0)
find_package(dynstr 0.2.0)
if(NOT DYNSTR_FOUND)
message(STATUS "Using in-tree dynstr")

View File

@ -1,4 +1,4 @@
.TH HANDLER_ADD 3 2023-09-13 0.1.0 "libweb Library Reference"
.TH HANDLER_ADD 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
handler_add \- add an endpoint to a web server handler object

View File

@ -1,4 +1,4 @@
.TH HANDLER_ALLOC 3 2023-11-16 0.2.0 "libweb Library Reference"
.TH HANDLER_ALLOC 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
handler_alloc \- allocate a web server handler object

View File

@ -1,4 +1,4 @@
.TH HANDLER_FREE 3 2023-09-14 0.1.0 "libweb Library Reference"
.TH HANDLER_FREE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
handler_free \- free a web server handler object

View File

@ -1,4 +1,4 @@
.TH HANDLER_LISTEN 3 2023-11-16 0.2.0 "libweb Library Reference"
.TH HANDLER_LISTEN 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
handler_listen \- initialize server to listen to a given port

View File

@ -1,4 +1,4 @@
.TH HANDLER_LOOP 3 2023-11-16 0.2.0 "libweb Library Reference"
.TH HANDLER_LOOP 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
handler_loop \- listen to and handle incoming connections on a web

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_ADD_ATTR 3 2023-09-24 0.1.0 "libweb Library Reference"
.TH HTML_NODE_ADD_ATTR 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_add_attr \- add attribute to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_ADD_CHILD 3 2023-09-25 0.1.0 "libweb Library Reference"
.TH HTML_NODE_ADD_CHILD 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_add_child \- add child to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_ADD_SIBLING 3 2023-09-25 0.1.0 "libweb Library Reference"
.TH HTML_NODE_ADD_SIBLING 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_add_sibling \- add sibling to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_ALLOC 3 2023-09-15 0.1.0 "libweb Library Reference"
.TH HTML_NODE_ALLOC 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_alloc \- allocate a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_FREE 3 2023-09-16 0.1.0 "libweb Library Reference"
.TH HTML_NODE_FREE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_free \- free a HTML node and its children

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_SET_VALUE 3 2023-09-24 0.1.0 "libweb Library Reference"
.TH HTML_NODE_SET_VALUE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_set_value \- set value to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_SET_VALUE_UNESCAPED 3 2023-09-24 0.1.0 "libweb Library Reference"
.TH HTML_NODE_SET_VALUE_UNESCAPED 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_node_set_value_unescaped \- set value to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_SERIALIZE 3 2023-09-24 0.1.0 "libweb Library Reference"
.TH HTML_SERIALIZE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
html_serialize \- add attribute to a HTML node

View File

@ -1,4 +1,4 @@
.TH HTTP_ALLOC 3 2023-09-06 0.1.0 "libweb Library Reference"
.TH HTTP_ALLOC 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_alloc \- allocate a HTTP context object

View File

@ -1,4 +1,4 @@
.TH HTTP_COOKIE_CREATE 3 2023-09-07 0.1.0 "libweb Library Reference"
.TH HTTP_COOKIE_CREATE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_cookie_create \- creates a HTTP/1.1 cookie

View File

@ -1,4 +1,4 @@
.TH HTTP_DECODE_URL 3 2023-11-11 0.2.0 "libweb Library Reference"
.TH HTTP_DECODE_URL 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_decode_url \- decodes a percent-encoded null-terminated string

View File

@ -1,4 +1,4 @@
.TH HTTP_ENCODE_URL 3 2023-09-07 0.1.0 "libweb Library Reference"
.TH HTTP_ENCODE_URL 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_encode_url \- allocates a percent-encoded null-terminated string

View File

@ -1,4 +1,4 @@
.TH HTTP_FREE 3 2023-09-06 0.1.0 "libweb Library Reference"
.TH HTTP_FREE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_free \- free a HTTP context object

View File

@ -1,4 +1,4 @@
.TH HTTP_RESPONSE_ADD_HEADER 3 2023-09-07 0.1.0 "libweb Library Reference"
.TH HTTP_RESPONSE_ADD_HEADER 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_response_add_header \- adds a HTTP/1.1 header to a response

View File

@ -1,4 +1,4 @@
.TH HTTP_UPDATE 3 2023-09-06 0.1.0 "libweb Library Reference"
.TH HTTP_UPDATE 3 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
http_update \- updates a HTTP context object

View File

@ -1,4 +1,4 @@
.TH LIBWEB_HANDLER 7 2023-11-18 0.2.0 "libweb Library Reference"
.TH LIBWEB_HANDLER 7 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
libweb_handler \- libweb high-level website configuration

View File

@ -1,4 +1,4 @@
.TH LIBWEB_HTML 7 2023-09-15 0.1.0 "libweb Library Reference"
.TH LIBWEB_HTML 7 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
libweb_html \- libweb HTML serializer

View File

@ -1,4 +1,4 @@
.TH LIBWEB_HTTP 7 2023-11-18 0.2.0 "libweb Library Reference"
.TH LIBWEB_HTTP 7 2024-02-12 0.2.0 "libweb Library Reference"
.SH NAME
libweb_http \- libweb HTTP connection handling and utilities

View File

@ -6,6 +6,6 @@ libdir=${exec_prefix}/lib
Name: libweb
Url: https://gitea.privatedns.org/xavi/libweb
Description: A simple and lightweight web framework
Version: 0.1.0
Version: 0.2.0
Cflags: -I${includedir}
Libs: -L${libdir} -lweb