From ed5cae4ed0621ef409510f94270c9f8f263736d0 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Sun, 23 Mar 2025 14:25:44 +0200 Subject: [PATCH] jansson 2.14.1 --- CHANGES | 4 ++-- CMakeLists.txt | 2 +- configure.ac | 2 +- doc/conf.py | 2 +- src/Makefile.am | 2 +- src/jansson.h | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 8eb7bbe..5b3098c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,13 +1,13 @@ Version 2.14.1 ============== -Work in progress +Released 2025-03-23 * Fixes: - Fix thread safety of encoding and decoding when `uselocale` or `newlocale` is used to switch locales inside the threads (#674, #675, #677. Thanks to - Bruno Haible the report and help with fixing.) + Bruno Haible for the report and help with fixing.) - Use David M. Gay's `dtoa()` algorithm to avoid misprinting issues of real numbers that are not exactly representable as a `double` (#680). diff --git a/CMakeLists.txt b/CMakeLists.txt index 3394236..34211fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ endif() # set (JANSSON_VERSION "2.3.1") # set (JANSSON_SOVERSION 2) -set(JANSSON_DISPLAY_VERSION "2.14") +set(JANSSON_DISPLAY_VERSION "2.14.1") # This is what is required to match the same numbers as automake's set(JANSSON_VERSION "4.14.0") diff --git a/configure.ac b/configure.ac index 46bb635..06b90b8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([jansson], [2.14], [https://github.com/akheron/jansson/issues]) +AC_INIT([jansson], [2.14.1], [https://github.com/akheron/jansson/issues]) AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE([1.10 foreign]) diff --git a/doc/conf.py b/doc/conf.py index 2426171..d1741d5 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ copyright = u'2009-2020, Petri Lehtinen' # built documents. # # The short X.Y version. -version = '2.14' +version = '2.14.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/src/Makefile.am b/src/Makefile.am index 39cf34f..e7394fd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -30,6 +30,6 @@ endif libjansson_la_LDFLAGS = \ -no-undefined \ -export-symbols-regex '^json_|^jansson_' \ - -version-info 18:0:14 \ + -version-info 18:1:14 \ @JSON_SYMVER_LDFLAGS@ \ @JSON_BSYMBOLIC_LDFLAGS@ diff --git a/src/jansson.h b/src/jansson.h index 391c85e..e9ff8e1 100644 --- a/src/jansson.h +++ b/src/jansson.h @@ -22,10 +22,10 @@ extern "C" { #define JANSSON_MAJOR_VERSION 2 #define JANSSON_MINOR_VERSION 14 -#define JANSSON_MICRO_VERSION 0 +#define JANSSON_MICRO_VERSION 1 /* Micro version is omitted if it's 0 */ -#define JANSSON_VERSION "2.14" +#define JANSSON_VERSION "2.14.1" /* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */