Skip to content

Commit ff6e6ee

Browse files
committed
jansson 2.3.1
1 parent e46b912 commit ff6e6ee

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

CHANGES

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
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+
126
Version 2.3
227
===========
328

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.3], [petri@digip.org])
2+
AC_INIT([jansson], [2.3.1], [petri@digip.org])
33

44
AM_INIT_AUTOMAKE([1.10 foreign])
55

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.3'
51+
version = '2.3.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
@@ -20,7 +20,7 @@ libjansson_la_SOURCES = \
2020
value.c
2121
libjansson_la_LDFLAGS = \
2222
-export-symbols-regex '^json_' \
23-
-version-info 7:0:3
23+
-version-info 7:1:3
2424

2525
if GCC
2626
# These flags are gcc specific

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 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 >= ... */

0 commit comments

Comments
 (0)