libgnunetchat

library for GNUnet Messenger
Log | Files | Refs | README | LICENSE

commit 2af2090cd95d4549213703a7d7124e950f448685
parent aa047cd6041fd5c9e965e8ac78298abfd0c9effa
Author: Jacki <jacki@thejackimonster.de>
Date:   Sat, 23 Mar 2024 23:27:24 +0100

Update documents to version 0.3.1

Signed-off-by: Jacki <jacki@thejackimonster.de>

Diffstat:
MChangeLog | 5+++++
MDoxyfile | 2+-
MREADME.md | 2+-
Minclude/gnunet/gnunet_chat_lib.h | 2+-
4 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +## Version 0.3.1 +* Makes dependency to libcheck optional (only required for building test cases) +* Fixes file iteration of chat context +* Fixes some build issues + ## Version 0.3.0 * This release requires the GNUnet Messenger Service 0.3! * It allows ticket management for tickets sent from contacts. diff --git a/Doxyfile b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = libgnunetchat # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.3.0 +PROJECT_NUMBER = 0.3.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/README.md b/README.md @@ -25,7 +25,7 @@ The following dependencies are required and need to be installed to build the li Then you can simply use [Meson](https://mesonbuild.com/) as follows: ``` -meson build # Configure the build files for your system +meson setup build # Configure the build files for your system ninja -C build # Build the library using those build files ninja -C build install # Install the library ``` diff --git a/include/gnunet/gnunet_chat_lib.h b/include/gnunet/gnunet_chat_lib.h @@ -43,7 +43,7 @@ * the #GNUNET_MESSENGER_VERSION of the GNUnet Messenger * service while the patch version is independent. */ -#define GNUNET_CHAT_VERSION 0x000000030000L +#define GNUNET_CHAT_VERSION 0x000000030001L #define GNUNET_CHAT_VERSION_MAJOR ((GNUNET_CHAT_VERSION >> 32L) & 0xFFFFL) #define GNUNET_CHAT_VERSION_MINOR ((GNUNET_CHAT_VERSION >> 16L) & 0xFFFFL)