diff --git a/ChangeLog b/ChangeLog index 1b69d8c..1aae032 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ + +2019-11-04 1.3 +- FIX: Escaped @ ("\@") is treated as "@" (#42, #103) +- NEW: Support reading JSON array elements (#91) +- UPD: Add home and removable-media interfaces to snap (#94) - FIX: fix unlikely crash after malloc fail when base64 encoding. +- NEW: Support reading nested data from pipes (#82) 2018-12-10 1.2 - NEW: Dockerfile (#76) diff --git a/configure.ac b/configure.ac index a107684..9438bb9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.63]) -AC_INIT([jo], [1.2], [jpmens@gmail.com]) +AC_INIT([jo], [1.3], [jp@mens.de]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([jo.c]) diff --git a/jo.c b/jo.c index 0aa43ce..aaa0541 100644 --- a/jo.c +++ b/jo.c @@ -13,7 +13,7 @@ #include "base64.h" /* - * Copyright (C) 2016-2019 Jan-Piet Mens + * Copyright (C) 2016-2019 Jan-Piet Mens * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/snapcraft.yaml b/snapcraft.yaml index bfc8580..5002286 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: jo -version: "1.2" +version: "1.3" summary: jo description: | This is jo, a small utility to create JSON objects or arrays.