Skip to content

Commit 46b49b1

Browse files
committed
v0.5.1
1 parent 5d85198 commit 46b49b1

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.16)
2-
project(jsonschema VERSION 0.5.0 LANGUAGES CXX)
2+
project(jsonschema VERSION 0.5.1 LANGUAGES CXX)
33
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
44
include(vendor/noa/cmake/noa.cmake)
55

CONTRIBUTING.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ git checkout main
2828
vim CMakeLists.txt
2929
# Update the version in action.yml
3030
vim action.yml
31+
# Update the version in the GitHub Actions example
32+
vim README.markdown
3133

3234
git add CMakeLists.txt action.yml
3335
git commit -m "vX.Y.Z"

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ brew install intelligence-ai/apps/jsonschema
5656
Where `X.Y.Z` is replaced with the desired version. For example:
5757

5858
```yaml
59-
- uses: intelligence-ai/jsonschema@v0.1.1
59+
- uses: intelligence-ai/jsonschema@v0.5.1
6060
# Then use as usual
6161
- run: jsonschema fmt path/to/schemas --check
6262
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ runs:
1010
--output "${GITHUB_WORKSPACE}/install.sh" \
1111
"https://raw.githubusercontent.com/intelligence-ai/jsonschema/main/install"
1212
chmod +x "${GITHUB_WORKSPACE}/install.sh"
13-
"${GITHUB_WORKSPACE}/install.sh" 0.5.0
13+
"${GITHUB_WORKSPACE}/install.sh" 0.5.1
1414
rm "${GITHUB_WORKSPACE}/install.sh"

0 commit comments

Comments
 (0)