Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jviotti committed Jun 12, 2024
1 parent 5d85198 commit 46b49b1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.16)
project(jsonschema VERSION 0.5.0 LANGUAGES CXX)
project(jsonschema VERSION 0.5.1 LANGUAGES CXX)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
include(vendor/noa/cmake/noa.cmake)

Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ git checkout main
vim CMakeLists.txt
# Update the version in action.yml
vim action.yml
# Update the version in the GitHub Actions example
vim README.markdown

git add CMakeLists.txt action.yml
git commit -m "vX.Y.Z"
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ brew install intelligence-ai/apps/jsonschema
Where `X.Y.Z` is replaced with the desired version. For example:

```yaml
- uses: intelligence-ai/jsonschema@v0.1.1
- uses: intelligence-ai/jsonschema@v0.5.1
# Then use as usual
- run: jsonschema fmt path/to/schemas --check
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" 0.5.0
"${GITHUB_WORKSPACE}/install.sh" 0.5.1
rm "${GITHUB_WORKSPACE}/install.sh"

0 comments on commit 46b49b1

Please sign in to comment.