Preparations for v0.9.12 release

This commit is contained in:
Wolfgang Hommel
2025-06-09 14:31:15 +02:00
parent f63569e422
commit 3ccdd344aa
6 changed files with 13 additions and 7 deletions

6
NEWS
View File

@@ -1,3 +1,9 @@
List of changes for v0.9.12
===========================
Since 0.9.11:
- Improved macOS compatibility (@usertam)
Since 0.9.10:
- Fixed various cross-platform compile-time issues
- Honor nanosecond parameters/fields in relevant system calls

4
README
View File

@@ -1,5 +1,5 @@
libfaketime, version 0.9.11 (May 2025)
======================================
libfaketime, version 0.9.12 (June 2025)
=======================================
Content of this file:

View File

@@ -1,4 +1,4 @@
.TH FAKETIME "1" "May 2025" "faketime 0.9.11" wolfcw
.TH FAKETIME "1" "June 2025" "faketime 0.9.12" 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.11 -compatibility_version 0.7
LIB_LDFLAGS += -dynamiclib -current_version 0.9.12 -compatibility_version 0.7
# From macOS 13 onwards, system binaries are compiled against the new arm64e ABI on Apple Silicon.
# These arm64e binaries enforce Pointer Authentication Code (PAC), and will refuse to run with

View File

@@ -1,7 +1,7 @@
/*
* libfaketime wrapper command
*
* This file is part of libfaketime, version 0.9.11
* This file is part of libfaketime, version 0.9.12
*
* 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.11";
const char version[] = "0.9.12";
#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.11
* This file is part of libfaketime, version 0.9.12
*
* 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