From a4528d25b2b5833c98c7dfbbb975666f0050dae9 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 9 Sep 2024 12:32:14 -0400 Subject: [PATCH] v4.0.1 --- 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 f71fafa8..3bd6791b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(jsonschema VERSION 4.0.0 LANGUAGES CXX) +project(jsonschema VERSION 4.0.1 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 6a406d8a..5ba8422b 100644 --- a/README.markdown +++ b/README.markdown @@ -88,7 +88,7 @@ brew install sourcemeta/apps/jsonschema Where `X.Y.Z` is replaced with the desired version. For example: ```yaml -- uses: sourcemeta/jsonschema@v4.0.0 +- uses: sourcemeta/jsonschema@v4.0.1 # Then use as usual - run: jsonschema fmt path/to/schemas --check ``` diff --git a/action.yml b/action.yml index 50040fcd..a8968e0d 100644 --- a/action.yml +++ b/action.yml @@ -10,5 +10,5 @@ runs: --output "${GITHUB_WORKSPACE}/install.sh" \ "https://raw.githubusercontent.com/sourcemeta/jsonschema/main/install" chmod +x "${GITHUB_WORKSPACE}/install.sh" - "${GITHUB_WORKSPACE}/install.sh" 4.0.0 + "${GITHUB_WORKSPACE}/install.sh" 4.0.1 rm "${GITHUB_WORKSPACE}/install.sh"