diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 58295dade..543fa7b4b 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -3,3 +3,13 @@ Changelog This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +2.0.0 +----- + +- Upgrade `uriparser` to 0.9.8 +- Introduce a schema keyword priority-based iterator based on the schema walker +- Extend the schema walker interface to support returning more information than + just the walking type +- Support printing `JSON::Type` types +- Start prototyping a JSON Schema compiler diff --git a/CMakeLists.txt b/CMakeLists.txt index ba9552c16..ed7174a41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.22) -project(jsontoolkit VERSION 1.0.0 LANGUAGES CXX +project(jsontoolkit VERSION 2.0.0 LANGUAGES CXX DESCRIPTION "The swiss-army knife for JSON programming in C++" HOMEPAGE_URL "https://jsontoolkit.sourcemeta.com") list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")