Skip to content

Commit 2882ead

Browse files
committed
jansson 2.13
1 parent 4c9018c commit 2882ead

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Version 2.13
22
============
33

4-
Released xxxx-xx-xx
4+
Released 2020-05-05
55

66
* New Features:
77

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ endif()
8585
# set (JANSSON_VERSION "2.3.1")
8686
# set (JANSSON_SOVERSION 2)
8787

88-
set(JANSSON_DISPLAY_VERSION "2.12")
88+
set(JANSSON_DISPLAY_VERSION "2.13")
8989

9090
# This is what is required to match the same numbers as automake's
91-
set(JANSSON_VERSION "4.11.1")
91+
set(JANSSON_VERSION "4.12.0")
9292
set(JANSSON_SOVERSION 4)
9393

9494
# for CheckFunctionKeywords

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2018 Petri Lehtinen <petri@digip.org>
1+
Copyright (c) 2009-2020 Petri Lehtinen <petri@digip.org>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

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.12], [https://github.com/akheron/jansson/issues])
2+
AC_INIT([jansson], [2.13], [https://github.com/akheron/jansson/issues])
33

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

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141

4242
# General information about the project.
4343
project = u'Jansson'
44-
copyright = u'2009-2016, Petri Lehtinen'
44+
copyright = u'2009-2020, Petri Lehtinen'
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '2.12'
51+
version = '2.13'
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
@@ -25,5 +25,5 @@ libjansson_la_SOURCES = \
2525
libjansson_la_LDFLAGS = \
2626
-no-undefined \
2727
-export-symbols-regex '^json_' \
28-
-version-info 15:1:11 \
28+
-version-info 16:0:12 \
2929
@JSON_BSYMBOLIC_LDFLAGS@

src/jansson.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ extern "C" {
2121
/* version */
2222

2323
#define JANSSON_MAJOR_VERSION 2
24-
#define JANSSON_MINOR_VERSION 12
24+
#define JANSSON_MINOR_VERSION 13
2525
#define JANSSON_MICRO_VERSION 0
2626

2727
/* Micro version is omitted if it's 0 */
28-
#define JANSSON_VERSION "2.12"
28+
#define JANSSON_VERSION "2.13"
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)