Skip to content

Commit 3c0b101

Browse files
committed
Version bump to v0.9.9
1 parent 44a6d1f commit 3c0b101

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
libfaketime, version 0.9.8 (August 2019)
2-
========================================
1+
libfaketime, version 0.9.9 (February 2021)
2+
==========================================
33

44

55
Content of this file:
@@ -20,7 +20,7 @@ Content of this file:
2020
i) "Limiting" libfaketime per process
2121
j) Spawning an external process
2222
k) Saving timestamps to file, loading them from file
23-
l) Replacing random numbers with deterministic number sequences (experimental)
23+
l) Replacing random numbers with deterministic number sequences
2424
5. License
2525
6. Contact
2626

@@ -717,8 +717,8 @@ faketime needs to be run using the faketime wrapper to use these files. This
717717
functionality has been added by Balint Reczey in v0.9.5.
718718

719719

720-
4l) Replacing random numbers with deterministic number sequences (experimental)
721-
-------------------------------------------------------------------------------
720+
4l) Replacing random numbers with deterministic number sequences
721+
----------------------------------------------------------------
722722

723723
libfaketime can be compiled with the CFLAG FAKE_RANDOM set (see src/Makefile).
724724

man/faketime.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH FAKETIME "1" "August 2019" "faketime 0.9.8" wolfcw
1+
.TH FAKETIME "1" "February 2021" "faketime 0.9.9" wolfcw
22
.SH NAME
33
faketime \- manipulate the system time for a given command
44
.SH SYNOPSIS
@@ -71,7 +71,7 @@ re-initialized. Some programs may dynamically load system libraries, such as lib
7171
.SH "REPORTING BUGS"
7272
Please use https://github.com/wolfcw/libfaketime/issues
7373
.SH COPYRIGHT
74-
Copyright \(co 2003-2013 by the libfaketime authors.
74+
Copyright \(co 2003-2021 by the libfaketime authors.
7575
.PP
7676
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
7777
PARTICULAR PURPOSE. You may redistribute copies of faketime under the

src/Makefile.OSX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ INSTALL ?= install
3939
PREFIX ?= /usr/local
4040

4141
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"' $(FAKETIME_COMPILE_CFLAGS)
42-
LIB_LDFLAGS += -dynamiclib -current_version 0.9.8 -compatibility_version 0.7
42+
LIB_LDFLAGS += -dynamiclib -current_version 0.9.9 -compatibility_version 0.7
4343

4444
SONAME = 1
4545
LIBS = libfaketime.${SONAME}.dylib

src/faketime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* libfaketime wrapper command
33
*
4-
* This file is part of libfaketime, version 0.9.8
4+
* This file is part of libfaketime, version 0.9.9
55
*
66
* libfaketime is free software; you can redistribute it and/or modify it
77
* under the terms of the GNU General Public License v2 as published by the
@@ -48,7 +48,7 @@
4848

4949
#include "faketime_common.h"
5050

51-
const char version[] = "0.9.8";
51+
const char version[] = "0.9.9";
5252

5353
#ifdef __APPLE__
5454
static const char *date_cmd = "gdate";

src/libfaketime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of libfaketime, version 0.9.8
2+
* This file is part of libfaketime, version 0.9.9
33
*
44
* libfaketime is free software; you can redistribute it and/or modify it
55
* under the terms of the GNU General Public License v2 as published by the

0 commit comments

Comments
 (0)