From 47da7d011739cf3ce3770c39773a1f8b70fe644a Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 22 Jul 2024 12:47:15 -0400 Subject: [PATCH] v2.3.0 --- CMakeLists.txt | 2 +- README.markdown | 2 +- action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4adcad4..b84a4a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(jsonschema VERSION 2.2.0 LANGUAGES CXX) +project(jsonschema VERSION 2.3.0 LANGUAGES CXX) list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") include(vendor/noa/cmake/noa.cmake) diff --git a/README.markdown b/README.markdown index 6ff67c8..82ace6a 100644 --- a/README.markdown +++ b/README.markdown @@ -67,7 +67,7 @@ brew install intelligence-ai/apps/jsonschema Where `X.Y.Z` is replaced with the desired version. For example: ```yaml -- uses: intelligence-ai/jsonschema@v2.2.0 +- uses: intelligence-ai/jsonschema@v2.3.0 # Then use as usual - run: jsonschema fmt path/to/schemas --check ``` diff --git a/action.yml b/action.yml index 071886c..21b62a4 100644 --- a/action.yml +++ b/action.yml @@ -10,5 +10,5 @@ runs: --output "${GITHUB_WORKSPACE}/install.sh" \ "https://raw.githubusercontent.com/intelligence-ai/jsonschema/main/install" chmod +x "${GITHUB_WORKSPACE}/install.sh" - "${GITHUB_WORKSPACE}/install.sh" 2.2.0 + "${GITHUB_WORKSPACE}/install.sh" 2.3.0 rm "${GITHUB_WORKSPACE}/install.sh"