aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Doxyfile2
-rw-r--r--README.md2
-rw-r--r--include/gnunet/gnunet_chat_lib.h2
4 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 40276d1..18d58ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
1## Version 0.3.1
2* Makes dependency to libcheck optional (only required for building test cases)
3* Fixes file iteration of chat context
4* Fixes some build issues
5
1## Version 0.3.0 6## Version 0.3.0
2* This release requires the GNUnet Messenger Service 0.3! 7* This release requires the GNUnet Messenger Service 0.3!
3* It allows ticket management for tickets sent from contacts. 8* It allows ticket management for tickets sent from contacts.
diff --git a/Doxyfile b/Doxyfile
index 7a4a965..268aac9 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -48,7 +48,7 @@ PROJECT_NAME = libgnunetchat
48# could be handy for archiving the generated documentation or if some version 48# could be handy for archiving the generated documentation or if some version
49# control system is used. 49# control system is used.
50 50
51PROJECT_NUMBER = 0.3.0 51PROJECT_NUMBER = 0.3.1
52 52
53# Using the PROJECT_BRIEF tag one can provide an optional one line description 53# Using the PROJECT_BRIEF tag one can provide an optional one line description
54# for a project that appears at the top of each page and should give viewer a 54# for a project that appears at the top of each page and should give viewer a
diff --git a/README.md b/README.md
index b4e6ad2..e9710ab 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ The following dependencies are required and need to be installed to build the li
25 25
26Then you can simply use [Meson](https://mesonbuild.com/) as follows: 26Then you can simply use [Meson](https://mesonbuild.com/) as follows:
27``` 27```
28meson build # Configure the build files for your system 28meson setup build # Configure the build files for your system
29ninja -C build # Build the library using those build files 29ninja -C build # Build the library using those build files
30ninja -C build install # Install the library 30ninja -C build install # Install the library
31``` 31```
diff --git a/include/gnunet/gnunet_chat_lib.h b/include/gnunet/gnunet_chat_lib.h
index 0912237..047861e 100644
--- a/include/gnunet/gnunet_chat_lib.h
+++ b/include/gnunet/gnunet_chat_lib.h
@@ -43,7 +43,7 @@
43 * the #GNUNET_MESSENGER_VERSION of the GNUnet Messenger 43 * the #GNUNET_MESSENGER_VERSION of the GNUnet Messenger
44 * service while the patch version is independent. 44 * service while the patch version is independent.
45 */ 45 */
46#define GNUNET_CHAT_VERSION 0x000000030000L 46#define GNUNET_CHAT_VERSION 0x000000030001L
47 47
48#define GNUNET_CHAT_VERSION_MAJOR ((GNUNET_CHAT_VERSION >> 32L) & 0xFFFFL) 48#define GNUNET_CHAT_VERSION_MAJOR ((GNUNET_CHAT_VERSION >> 32L) & 0xFFFFL)
49#define GNUNET_CHAT_VERSION_MINOR ((GNUNET_CHAT_VERSION >> 16L) & 0xFFFFL) 49#define GNUNET_CHAT_VERSION_MINOR ((GNUNET_CHAT_VERSION >> 16L) & 0xFFFFL)