mirror of
https://github.com/akheron/jansson.git
synced 2025-04-04 13:05:02 +00:00
jansson 2.14.1
Some checks failed
tests / lint (push) Failing after 28s
tests / autotools (clang, no, ubuntu-latest) (push) Failing after 32s
tests / autotools (clang, yes, ubuntu-latest) (push) Failing after 30s
tests / autotools (gcc, no, ubuntu-latest) (push) Failing after 39s
tests / autotools (gcc, yes, ubuntu-latest) (push) Failing after 26s
tests / cmake (clang, ubuntu-latest) (push) Failing after 31s
tests / cmake (gcc, ubuntu-latest) (push) Failing after 23s
tests / valgrind (push) Failing after 29s
tests / autotools (gcc, yes, macos-latest) (push) Has been cancelled
tests / cmake (clang, macos-latest) (push) Has been cancelled
tests / cmake (gcc, macos-latest) (push) Has been cancelled
tests / cmake (msvc, windows-latest) (push) Has been cancelled
tests / autotools (clang, no, macos-latest) (push) Has been cancelled
tests / autotools (clang, yes, macos-latest) (push) Has been cancelled
tests / autotools (gcc, no, macos-latest) (push) Has been cancelled
Some checks failed
tests / lint (push) Failing after 28s
tests / autotools (clang, no, ubuntu-latest) (push) Failing after 32s
tests / autotools (clang, yes, ubuntu-latest) (push) Failing after 30s
tests / autotools (gcc, no, ubuntu-latest) (push) Failing after 39s
tests / autotools (gcc, yes, ubuntu-latest) (push) Failing after 26s
tests / cmake (clang, ubuntu-latest) (push) Failing after 31s
tests / cmake (gcc, ubuntu-latest) (push) Failing after 23s
tests / valgrind (push) Failing after 29s
tests / autotools (gcc, yes, macos-latest) (push) Has been cancelled
tests / cmake (clang, macos-latest) (push) Has been cancelled
tests / cmake (gcc, macos-latest) (push) Has been cancelled
tests / cmake (msvc, windows-latest) (push) Has been cancelled
tests / autotools (clang, no, macos-latest) (push) Has been cancelled
tests / autotools (clang, yes, macos-latest) (push) Has been cancelled
tests / autotools (gcc, no, macos-latest) (push) Has been cancelled
This commit is contained in:
parent
61fc3d0e28
commit
ed5cae4ed0
6 changed files with 8 additions and 8 deletions
4
CHANGES
4
CHANGES
|
@ -1,13 +1,13 @@
|
||||||
Version 2.14.1
|
Version 2.14.1
|
||||||
==============
|
==============
|
||||||
|
|
||||||
Work in progress
|
Released 2025-03-23
|
||||||
|
|
||||||
* Fixes:
|
* Fixes:
|
||||||
|
|
||||||
- Fix thread safety of encoding and decoding when `uselocale` or `newlocale`
|
- Fix thread safety of encoding and decoding when `uselocale` or `newlocale`
|
||||||
is used to switch locales inside the threads (#674, #675, #677. Thanks to
|
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
|
- Use David M. Gay's `dtoa()` algorithm to avoid misprinting issues of real
|
||||||
numbers that are not exactly representable as a `double` (#680).
|
numbers that are not exactly representable as a `double` (#680).
|
||||||
|
|
|
@ -36,7 +36,7 @@ endif()
|
||||||
# set (JANSSON_VERSION "2.3.1")
|
# set (JANSSON_VERSION "2.3.1")
|
||||||
# set (JANSSON_SOVERSION 2)
|
# 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
|
# This is what is required to match the same numbers as automake's
|
||||||
set(JANSSON_VERSION "4.14.0")
|
set(JANSSON_VERSION "4.14.0")
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AC_PREREQ([2.60])
|
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([.])
|
AC_CONFIG_AUX_DIR([.])
|
||||||
AM_INIT_AUTOMAKE([1.10 foreign])
|
AM_INIT_AUTOMAKE([1.10 foreign])
|
||||||
|
|
|
@ -48,7 +48,7 @@ copyright = u'2009-2020, Petri Lehtinen'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '2.14'
|
version = '2.14.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,6 @@ endif
|
||||||
libjansson_la_LDFLAGS = \
|
libjansson_la_LDFLAGS = \
|
||||||
-no-undefined \
|
-no-undefined \
|
||||||
-export-symbols-regex '^json_|^jansson_' \
|
-export-symbols-regex '^json_|^jansson_' \
|
||||||
-version-info 18:0:14 \
|
-version-info 18:1:14 \
|
||||||
@JSON_SYMVER_LDFLAGS@ \
|
@JSON_SYMVER_LDFLAGS@ \
|
||||||
@JSON_BSYMBOLIC_LDFLAGS@
|
@JSON_BSYMBOLIC_LDFLAGS@
|
||||||
|
|
|
@ -22,10 +22,10 @@ extern "C" {
|
||||||
|
|
||||||
#define JANSSON_MAJOR_VERSION 2
|
#define JANSSON_MAJOR_VERSION 2
|
||||||
#define JANSSON_MINOR_VERSION 14
|
#define JANSSON_MINOR_VERSION 14
|
||||||
#define JANSSON_MICRO_VERSION 0
|
#define JANSSON_MICRO_VERSION 1
|
||||||
|
|
||||||
/* Micro version is omitted if it's 0 */
|
/* 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
|
/* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this
|
||||||
for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */
|
for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */
|
||||||
|
|
Loading…
Add table
Reference in a new issue