Version bump to 0.9.10 (prepares for #366)

This commit is contained in:
Wolfgang Hommel
2022-02-20 17:53:54 +01:00
parent 2c02fc08ef
commit 02bc1fccae
6 changed files with 15 additions and 7 deletions

8
NEWS
View File

@@ -1,3 +1,11 @@
Since 0.9.9:
- improved macOS Monterey support through dyld interposing
- changed interception hooks for stat() and similar functions,
refactored to use a common handler (@sirainen)
- added support for timespec_get, timerfd_{get,set} (@sliquister)
- generic syscall() interception for selected syscalls (@dkg)
- improved testing system (@dkg)
Since 0.9.8:
- When compiled with the CFLAG FAKE_RANDOM set,
libfaketime will intercept calls to getrandom()

4
README
View File

@@ -1,5 +1,5 @@
libfaketime, version 0.9.9 (February 2021)
==========================================
libfaketime, version 0.9.10 (February 2022)
===========================================
Content of this file:

View File

@@ -1,4 +1,4 @@
.TH FAKETIME "1" "February 2021" "faketime 0.9.9" wolfcw
.TH FAKETIME "1" "February 2022" "faketime 0.9.10" wolfcw
.SH NAME
faketime \- manipulate the system time for a given command
.SH SYNOPSIS

View File

@@ -56,7 +56,7 @@ INSTALL ?= install
PREFIX ?= /usr/local
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"' $(FAKETIME_COMPILE_CFLAGS) -DMACOS_DYLD_INTERPOSE -DFAKE_SETTIME
LIB_LDFLAGS += -dynamiclib -current_version 0.9.9 -compatibility_version 0.7
LIB_LDFLAGS += -dynamiclib -current_version 0.9.10 -compatibility_version 0.7
SONAME = 1
LIBS = libfaketime.${SONAME}.dylib

View File

@@ -1,7 +1,7 @@
/*
* libfaketime wrapper command
*
* This file is part of libfaketime, version 0.9.9
* This file is part of libfaketime, version 0.9.10
*
* 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.9";
const char version[] = "0.9.10";
#if (defined __APPLE__) || (defined __sun)
static const char *date_cmd = "gdate";

View File

@@ -1,5 +1,5 @@
/*
* This file is part of libfaketime, version 0.9.9
* This file is part of libfaketime, version 0.9.10
*
* 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