Preparations for 0.9.8 release

This commit is contained in:
Wolfgang Hommel
2019-08-12 12:25:41 +02:00
parent 5e56e9a8fe
commit aa091db286
7 changed files with 17 additions and 10 deletions

6
NEWS
View File

@@ -1,3 +1,9 @@
Since 0.9.7:
- Passthrough for unknown clock ids to avoid error messages
- Fixes for multithreaded operations (mliertzer, qnox)
- glibc-related fixes (jprjr) and gcc8 support (tpetazzoni)
- Improved error message output on parsing errors
Since 0.9.6:
- Julien Gilli added an option to disable monotonic time faking
- Azat Khuzhin added support for COARSE clocks

4
README
View File

@@ -1,5 +1,5 @@
libfaketime, version 0.9.7 (November 2017)
==========================================
libfaketime, version 0.9.8 (August 2019)
========================================
Content of this file:

9
TODO
View File

@@ -1,9 +1,10 @@
Open issues / next steps for libfaketime development
- support interception of further system calls, e.g. clock_nanosleep (#105),
walltime (#195), chrono::system_clock::now (#176), select (#115)
- fake timer_create and friends
- add more functional tests that check more than the basic functionality
- use the testing framework to also implement unit tests
- fake timer_create and friends
- work around thread local storage issue, e.g., by using pthreads
- add autoconf/automake support to get rid of separate Makefile.OSX
- improve pthread support
- integrate manchicken's autoconf/automake support to get rid of separate Makefile.OSX

View File

@@ -1,4 +1,4 @@
.TH FAKETIME "1" "November 2017" "faketime 0.9.7" wolfcw
.TH FAKETIME "1" "August 2019" "faketime 0.9.8" wolfcw
.SH NAME
faketime \- manipulate the system time for a given command
.SH SYNOPSIS

View File

@@ -39,7 +39,7 @@ INSTALL ?= install
PREFIX ?= /usr/local
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"'
LIB_LDFLAGS += -dynamiclib -current_version 0.9.7 -compatibility_version 0.7
LIB_LDFLAGS += -dynamiclib -current_version 0.9.8 -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.7
* This file is part of libfaketime, version 0.9.8
*
* 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

View File

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