mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
Preparations for v0.9.12 release
This commit is contained in:
6
NEWS
6
NEWS
@@ -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
4
README
@@ -1,5 +1,5 @@
|
||||
libfaketime, version 0.9.11 (May 2025)
|
||||
======================================
|
||||
libfaketime, version 0.9.12 (June 2025)
|
||||
=======================================
|
||||
|
||||
|
||||
Content of this 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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user