From e5777dde6c8ada7d463d23b8ff3516451a57fbdb Mon Sep 17 00:00:00 2001 From: peri4 Date: Sat, 1 Oct 2022 10:53:09 +0300 Subject: [PATCH] version 3.3.0 --- CMakeLists.txt | 4 ++-- doc/pages/summary.md | 2 +- libs/main/core/picoremodule.h | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f14ac82a..418ccc99 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.0) cmake_policy(SET CMP0017 NEW) # need include() with .cmake project(PIP) set(PIP_MAJOR 3) -set(PIP_MINOR 2) -set(PIP_REVISION 1) +set(PIP_MINOR 3) +set(PIP_REVISION 0) set(PIP_SUFFIX ) set(PIP_COMPANY SHS) set(PIP_DOMAIN org.SHS) diff --git a/doc/pages/summary.md b/doc/pages/summary.md index 9b118e62..0a4adc5a 100644 --- a/doc/pages/summary.md +++ b/doc/pages/summary.md @@ -6,7 +6,7 @@ * direct output to console (\a PICout) * containers (\a PIVector, \a PIDeque, \a PIVector2D, \a PIStack, \a PIQueue, \a PIMap, \a PISet) * byte array (\a PIByteArray) -* serialization (\a PIBinaryStream, \a PITextStream, \a PIIOBinaryStream, \a PIIOTextStream, \a PIChunkStream) +* serialization (\a PIBinaryStream, \a PITextStream, \a PIIOBinaryStream, \a PIIOTextStream, \a PIChunkStream, \a PIJSON) * string (\a PIConstChars, \a PIString, \a PIStringList) * base object (events and handlers) (\a PIObject) * multithreading diff --git a/libs/main/core/picoremodule.h b/libs/main/core/picoremodule.h index 1566078a..0f46cb02 100644 --- a/libs/main/core/picoremodule.h +++ b/libs/main/core/picoremodule.h @@ -57,5 +57,6 @@ #include "picli.h" #include "pichunkstream.h" #include "pipropertystorage.h" +#include "pijson.h" #endif // PICOREMODULE_H