Bump version to 0.3.0

This commit is contained in:
Xavier Del Campo Romero 2024-02-19 23:29:01 +01:00
parent d9836a5b42
commit b4930f72bb
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
25 changed files with 25 additions and 25 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.2.0)
project(web LANGUAGES C VERSION 0.3.0)
add_library(${PROJECT_NAME}
handler.c
html.c

View File

@ -1,4 +1,4 @@
.TH HANDLER_ADD 3 2024-02-12 0.2.0 "libweb Library Reference"
.TH HANDLER_ADD 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HANDLER_ALLOC 3 2024-02-19 0.3.0 "libweb Library Reference"
.SH NAME
handler_alloc \- allocate a web server handler object

View File

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

View File

@ -1,4 +1,4 @@
.TH HANDLER_LISTEN 3 2024-02-12 0.2.0 "libweb Library Reference"
.TH HANDLER_LISTEN 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HANDLER_LOOP 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_ADD_ATTR 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_ADD_CHILD 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_ADD_SIBLING 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_ALLOC 3 2024-02-19 0.3.0 "libweb Library Reference"
.SH NAME
html_node_alloc \- allocate a HTML node

View File

@ -1,4 +1,4 @@
.TH HTML_NODE_FREE 3 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_FREE 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_SET_VALUE 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_NODE_SET_VALUE_UNESCAPED 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTML_SERIALIZE 3 2024-02-19 0.3.0 "libweb Library Reference"
.SH NAME
html_serialize \- add attribute to a HTML node

View File

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

View File

@ -1,4 +1,4 @@
.TH HTTP_COOKIE_CREATE 3 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_COOKIE_CREATE 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_DECODE_URL 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_ENCODE_URL 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_FREE 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_RESPONSE_ADD_HEADER 3 2024-02-19 0.3.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 2024-02-12 0.2.0 "libweb Library Reference"
.TH HTTP_UPDATE 3 2024-02-19 0.3.0 "libweb Library Reference"
.SH NAME
http_update \- updates a HTTP context object

View File

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

View File

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

View File

@ -1,4 +1,4 @@
.TH LIBWEB_HTTP 7 2024-02-12 0.2.0 "libweb Library Reference"
.TH LIBWEB_HTTP 7 2024-02-19 0.3.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.2.0
Version: 0.3.0
Cflags: -I${includedir}
Libs: -L${libdir} -lweb