diff --git a/NEWS b/NEWS index f45d0e0..4d08ea1 100644 --- a/NEWS +++ b/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 diff --git a/README b/README index 9832d5d..a7326ea 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -libfaketime, version 0.9.11 (May 2025) -====================================== +libfaketime, version 0.9.12 (June 2025) +======================================= Content of this file: diff --git a/man/faketime.1 b/man/faketime.1 index c7c1f51..aeb0d23 100644 --- a/man/faketime.1 +++ b/man/faketime.1 @@ -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 diff --git a/src/Makefile.OSX b/src/Makefile.OSX index e056f37..405c021 100644 --- a/src/Makefile.OSX +++ b/src/Makefile.OSX @@ -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 diff --git a/src/faketime.c b/src/faketime.c index 38aa577..ce7925b 100644 --- a/src/faketime.c +++ b/src/faketime.c @@ -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"; diff --git a/src/libfaketime.c b/src/libfaketime.c index 8e6496a..6d1a575 100644 --- a/src/libfaketime.c +++ b/src/libfaketime.c @@ -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