File tree Expand file tree Collapse file tree 5 files changed +30
-5
lines changed
Expand file tree Collapse file tree 5 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 1+ Version 2.3.1
2+ =============
3+
4+ Released 2012-04-20
5+
6+ * Build issues:
7+
8+ - Only use ``long long`` if ``strtoll()`` is also available.
9+
10+ * Documentation:
11+
12+ - Fix the names of library version constants in documentation. (#52)
13+
14+ - Change the tutorial to use GitHub API v3. (#65)
15+
16+ * Tests:
17+
18+ - Make some tests locale independent. (#51)
19+
20+ - Distribute the library exports test in the tarball.
21+
22+ - Make test run on shells that don't support the ``export FOO=bar``
23+ syntax.
24+
25+
126Version 2.3
227===========
328
Original file line number Diff line number Diff line change 11AC_PREREQ ( [ 2.60] )
2- AC_INIT ( [ jansson] , [ 2.3] , [ petri@digip.org] )
2+ AC_INIT ( [ jansson] , [ 2.3.1 ] , [ petri@digip.org] )
33
44AM_INIT_AUTOMAKE ( [ 1.10 foreign] )
55
Original file line number Diff line number Diff line change 4848# built documents.
4949#
5050# The short X.Y version.
51- version = '2.3'
51+ version = '2.3.1 '
5252# The full version, including alpha/beta/rc tags.
5353release = version
5454
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ libjansson_la_SOURCES = \
2020 value.c
2121libjansson_la_LDFLAGS = \
2222 -export-symbols-regex '^json_' \
23- -version-info 7:0 :3
23+ -version-info 7:1 :3
2424
2525if GCC
2626# These flags are gcc specific
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ extern "C" {
2222
2323#define JANSSON_MAJOR_VERSION 2
2424#define JANSSON_MINOR_VERSION 3
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.3"
28+ #define JANSSON_VERSION "2.3.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 >= ... */
You can’t perform that action at this time.
0 commit comments