From e91561dbf9a0cf43b67ccb3f2e5d07874f4992e7 Mon Sep 17 00:00:00 2001 From: tokox Date: Tue, 19 Mar 2024 22:39:56 +0100 Subject: [PATCH] Bump version to v1.2 --- cpp-json.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cpp-json.spec b/cpp-json.spec index afadb47..7e8992d 100644 --- a/cpp-json.spec +++ b/cpp-json.spec @@ -1,5 +1,5 @@ Name: tokox-cpp-json -Version: 1.1 +Version: 1.2 Release: 1%{?dist} Summary: C++ JSON object import/export library @@ -10,8 +10,6 @@ Source0: https://github.com/tokox/cpp-json/archive/v%{version}.tar.gz BuildArch: noarch -Requires: libstdc++ - %description This is a JSON object import/export library in C++. It contains class to represent JSON Object and functions to read it from stream and write it to stream. That is basically it. For more information look at README. Install from copr: @@ -38,6 +36,10 @@ cp -a LICENSE.md README.md %{buildroot}/usr/share/doc/tokox/cpp-json %doc /usr/share/doc/tokox/cpp-json/README.md %changelog +* Tue Mar 19 2024 Tomasz Kośnikowski (tokox) - 1.2-1 + - Replaced std::variant with std::any + - improved object class + * Sun Mar 10 2024 Tomasz Kośnikowski (tokox) - 1.1-1 - Wrapped everything in tokox namespace and reformated code - Updated README