summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--README2
-rw-r--r--man/faketime.12
-rw-r--r--src/Makefile.OSX2
-rw-r--r--src/faketime.c4
-rw-r--r--src/libfaketime.c2
6 files changed, 9 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index ed49dd2..8886455 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,7 @@
Since 0.9.5:
+ - fixed crashes that happened when other LD_PRELOAD libraries were used
+ - fixed passing through of return values when using the faketime wrapper
+ - fixed compile-time issues with CLOCK_MONOTONIC_RAW on some platforms
- rbalint added Filter commands: FAKETIME_ONLY_CMDS and
FAKETIME_SKIP_CMDS control which (sub-)processes libfaketime
is applied to.
diff --git a/README b/README
index c50bd21..2a31142 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
=======================================================
- libfaketime, version 0.9.6 (March 2014)
+ libfaketime, version 0.9.6 (June 2014)
(previously also know as FakeTime Preload Library)
=======================================================
diff --git a/man/faketime.1 b/man/faketime.1
index c8646d4..d00d80b 100644
--- a/man/faketime.1
+++ b/man/faketime.1
@@ -1,4 +1,4 @@
-.TH FAKETIME "1" "October 2013" "faketime 0.9.5" wolfcw
+.TH FAKETIME "1" "June 2014" "faketime 0.9.6" wolfcw
.SH NAME
faketime \- manipulate the system time for a given command
.SH SYNOPSIS
diff --git a/src/Makefile.OSX b/src/Makefile.OSX
index 3cb4868..e0ae2a3 100644
--- a/src/Makefile.OSX
+++ b/src/Makefile.OSX
@@ -45,7 +45,7 @@ INSTALL ?= install
PREFIX ?= /usr/local
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"'
-LIB_LDFLAGS += -dynamiclib -current_version 0.9.5 -compatibility_version 0.7
+LIB_LDFLAGS += -dynamiclib -current_version 0.9.6 -compatibility_version 0.7
SONAME = 1
LIBS = libfaketime.${SONAME}.dylib
diff --git a/src/faketime.c b/src/faketime.c
index 191b232..45258f8 100644
--- a/src/faketime.c
+++ b/src/faketime.c
@@ -1,7 +1,7 @@
/*
* libfaketime wrapper command
*
- * This file is part of libfaketime, version 0.9.5
+ * This file is part of libfaketime, version 0.9.6
*
* libfaketime is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License v2 as published by the
@@ -48,7 +48,7 @@
#include "faketime_common.h"
-const char version[] = "0.9.5";
+const char version[] = "0.9.6";
#ifdef __APPLE__
static const char *date_cmd = "gdate";
diff --git a/src/libfaketime.c b/src/libfaketime.c
index f76303e..ecda143 100644
--- a/src/libfaketime.c
+++ b/src/libfaketime.c
@@ -1,5 +1,5 @@
/*
- * This file is part of libfaketime, version 0.9.5
+ * This file is part of libfaketime, version 0.9.6
*
* libfaketime is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License v2 as published by the