jansson 2.13

remotes/origin/2.13 v2.13
Petri Lehtinen 4 years ago
parent 4c9018cc4c
commit 2882ead5bb

@ -1,7 +1,7 @@
Version 2.13 Version 2.13
============ ============
Released xxxx-xx-xx Released 2020-05-05
* New Features: * New Features:

@ -85,10 +85,10 @@ 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.12") set(JANSSON_DISPLAY_VERSION "2.13")
# 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.11.1") set(JANSSON_VERSION "4.12.0")
set(JANSSON_SOVERSION 4) set(JANSSON_SOVERSION 4)
# for CheckFunctionKeywords # for CheckFunctionKeywords

@ -1,4 +1,4 @@
Copyright (c) 2009-2018 Petri Lehtinen <petri@digip.org> Copyright (c) 2009-2020 Petri Lehtinen <petri@digip.org>
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

@ -1,5 +1,5 @@
AC_PREREQ([2.60]) AC_PREREQ([2.60])
AC_INIT([jansson], [2.12], [https://github.com/akheron/jansson/issues]) AC_INIT([jansson], [2.13], [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])

@ -41,14 +41,14 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Jansson' project = u'Jansson'
copyright = u'2009-2016, Petri Lehtinen' copyright = u'2009-2020, Petri Lehtinen'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '2.12' version = '2.13'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = version release = version

@ -25,5 +25,5 @@ libjansson_la_SOURCES = \
libjansson_la_LDFLAGS = \ libjansson_la_LDFLAGS = \
-no-undefined \ -no-undefined \
-export-symbols-regex '^json_' \ -export-symbols-regex '^json_' \
-version-info 15:1:11 \ -version-info 16:0:12 \
@JSON_BSYMBOLIC_LDFLAGS@ @JSON_BSYMBOLIC_LDFLAGS@

@ -21,11 +21,11 @@ extern "C" {
/* version */ /* version */
#define JANSSON_MAJOR_VERSION 2 #define JANSSON_MAJOR_VERSION 2
#define JANSSON_MINOR_VERSION 12 #define JANSSON_MINOR_VERSION 13
#define JANSSON_MICRO_VERSION 0 #define JANSSON_MICRO_VERSION 0
/* Micro version is omitted if it's 0 */ /* Micro version is omitted if it's 0 */
#define JANSSON_VERSION "2.12" #define JANSSON_VERSION "2.13"
/* 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…
Cancel
Save