Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Zygmunt Krynicki <me@zygoon.pl>
  • Loading branch information
zyga committed Jun 26, 2020
1 parent 0d7c52f commit 9c0afdb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# along with Libzt. If not, see <https://www.gnu.org/licenses/>.

NAME = libzt
VERSION = 0.3
VERSION = 0.3.1

srcdir ?= .
# Include optional generated makefile from the configuration system.
Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changes in 0.3.1:

* The build system has been updated to ZMK 0.3.5. This should fix
current build issues encountered in Debian.

Changes in 0.3:

* Pointers captured in zt_value by zt_pack_pointer() are now constant.
Expand Down
2 changes: 1 addition & 1 deletion zt-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static void selftest_stream_eq_at(FILE* stream, const char* file,
static void test_MAJOR_MINOR_VERSION(void)
{
assert(ZT_MAJOR_VERSION == 0);
assert(ZT_MINOR_VERSION == 1);
assert(ZT_MINOR_VERSION == 3);
}

/* packing arguments */
Expand Down
2 changes: 1 addition & 1 deletion zt.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ extern "C" {
#include <stdlib.h>

#define ZT_MAJOR_VERSION 0
#define ZT_MINOR_VERSION 1
#define ZT_MINOR_VERSION 3

struct zt_test;
typedef struct zt_test* zt_t;
Expand Down

0 comments on commit 9c0afdb

Please sign in to comment.