Skip to content

Commit 3ccdd34

Browse files
committed
Preparations for v0.9.12 release
1 parent f63569e commit 3ccdd34

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
List of changes for v0.9.12
2+
===========================
3+
4+
Since 0.9.11:
5+
- Improved macOS compatibility (@usertam)
6+
17
Since 0.9.10:
28
- Fixed various cross-platform compile-time issues
39
- Honor nanosecond parameters/fields in relevant system calls

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
libfaketime, version 0.9.11 (May 2025)
2-
======================================
1+
libfaketime, version 0.9.12 (June 2025)
2+
=======================================
33

44

55
Content of this file:

man/faketime.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH FAKETIME "1" "May 2025" "faketime 0.9.11" wolfcw
1+
.TH FAKETIME "1" "June 2025" "faketime 0.9.12" wolfcw
22
.SH NAME
33
faketime \- manipulate the system time for a given command
44
.SH SYNOPSIS

src/Makefile.OSX

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

5858
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"' $(FAKETIME_COMPILE_CFLAGS) -DMACOS_DYLD_INTERPOSE -DFAKE_SETTIME
59-
LIB_LDFLAGS += -dynamiclib -current_version 0.9.11 -compatibility_version 0.7
59+
LIB_LDFLAGS += -dynamiclib -current_version 0.9.12 -compatibility_version 0.7
6060

6161
# From macOS 13 onwards, system binaries are compiled against the new arm64e ABI on Apple Silicon.
6262
# These arm64e binaries enforce Pointer Authentication Code (PAC), and will refuse to run with

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.11
4+
* This file is part of libfaketime, version 0.9.12
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.11";
51+
const char version[] = "0.9.12";
5252

5353
#if (defined __APPLE__) || (defined __sun)
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.11
2+
* This file is part of libfaketime, version 0.9.12
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)