Skip to content

Commit ed5cae4

Browse files
committed
jansson 2.14.1
1 parent 61fc3d0 commit ed5cae4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CHANGES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Version 2.14.1
22
==============
33

4-
Work in progress
4+
Released 2025-03-23
55

66
* Fixes:
77

88
- Fix thread safety of encoding and decoding when `uselocale` or `newlocale`
99
is used to switch locales inside the threads (#674, #675, #677. Thanks to
10-
Bruno Haible the report and help with fixing.)
10+
Bruno Haible for the report and help with fixing.)
1111

1212
- Use David M. Gay's `dtoa()` algorithm to avoid misprinting issues of real
1313
numbers that are not exactly representable as a `double` (#680).

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ endif()
3636
# set (JANSSON_VERSION "2.3.1")
3737
# set (JANSSON_SOVERSION 2)
3838

39-
set(JANSSON_DISPLAY_VERSION "2.14")
39+
set(JANSSON_DISPLAY_VERSION "2.14.1")
4040

4141
# This is what is required to match the same numbers as automake's
4242
set(JANSSON_VERSION "4.14.0")

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.60])
2-
AC_INIT([jansson], [2.14], [https://github.com/akheron/jansson/issues])
2+
AC_INIT([jansson], [2.14.1], [https://github.com/akheron/jansson/issues])
33

44
AC_CONFIG_AUX_DIR([.])
55
AM_INIT_AUTOMAKE([1.10 foreign])

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '2.14'
51+
version = '2.14.1'
5252
# The full version, including alpha/beta/rc tags.
5353
release = version
5454

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ endif
3030
libjansson_la_LDFLAGS = \
3131
-no-undefined \
3232
-export-symbols-regex '^json_|^jansson_' \
33-
-version-info 18:0:14 \
33+
-version-info 18:1:14 \
3434
@JSON_SYMVER_LDFLAGS@ \
3535
@JSON_BSYMBOLIC_LDFLAGS@

src/jansson.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ extern "C" {
2222

2323
#define JANSSON_MAJOR_VERSION 2
2424
#define JANSSON_MINOR_VERSION 14
25-
#define JANSSON_MICRO_VERSION 0
25+
#define JANSSON_MICRO_VERSION 1
2626

2727
/* Micro version is omitted if it's 0 */
28-
#define JANSSON_VERSION "2.14"
28+
#define JANSSON_VERSION "2.14.1"
2929

3030
/* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this
3131
for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */

0 commit comments

Comments
 (0)