From 90220e51bcb2040d24b1f06581f0805a3091acda Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Tue, 10 Jun 2025 16:03:47 -0400 Subject: [PATCH] Update version. --- README.md | 5 ++++- configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e8640143..01ed28f2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Status ====== -libffi-3.5.0 was released on June 8, 2025. Check the libffi web +libffi-3.5.1 was released on June 10, 2025. Check the libffi web page for updates: . @@ -203,6 +203,9 @@ History See the git log for details at http://github.com/libffi/libffi. + 3.5.1 Jun-10-2025 + Fix symbol versioning error. + 3.5.0 Jun-8-2025 Add FFI_VERSION_STRING and FFI_VERSION_NUMBER macros, as well as ffi_get_version() and ffi_get_version_number() functions. diff --git a/configure.ac b/configure.ac index ea1fab0c..258107d7 100644 --- a/configure.ac +++ b/configure.ac @@ -2,10 +2,10 @@ dnl Process this with autoconf to create configure AC_PREREQ([2.68]) -AC_INIT([libffi],[3.5.1-dev],[http://github.com/libffi/libffi/issues]) +AC_INIT([libffi],[3.5.1],[http://github.com/libffi/libffi/issues]) AC_CONFIG_HEADERS([fficonfig.h]) -FFI_VERSION_STRING="3.5.1-dev" +FFI_VERSION_STRING="3.5.1" FFI_VERSION_NUMBER=30501 AC_SUBST(FFI_VERSION_STRING) AC_SUBST(FFI_VERSION_NUMBER)