Skip to content

Commit

Permalink
Merge pull request #10 from driv3r/chore/2022-03/update-jsonschema-rs
Browse files Browse the repository at this point in the history
Upgrade jsonschema-rs version to v0.15
  • Loading branch information
Leszek Zalewski authored Mar 23, 2022
2 parents 12fb1a8 + c182c93 commit 26510ad
Show file tree
Hide file tree
Showing 11 changed files with 357 additions and 552 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
- name: Set up Rust
id: toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -50,7 +49,7 @@ jobs:
brew install gnu-tar
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
$CARGO_HOME/bin/
Expand All @@ -60,15 +59,13 @@ jobs:
target
key: ${{ runner.os }}-cargo-${{ steps.toolchain.outputs.rustc_hash}}-${{ hashFiles('**/Cargo.lock') }}

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock')}}-${{ hashFiles('../.tool-versions') }}
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock')}}-${{ hashFiles('**/.tool-versions') }}

- name: Prepare ruby gems
run: |
gem install bundler -v 2.2.3
bundle config path vendor/bundle
bundle config jobs 4
Expand Down Expand Up @@ -112,7 +109,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1

Expand Down Expand Up @@ -150,7 +147,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ruby 2.6.0
rust 1.48.0
rust 1.59.0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.0]
### Changed
- Update `jsonschema` dependency
- Update gems

### Removed
- No need to store a copy of the JSON Schema serde Value, as `jsonschema` creates its own copy

## [0.9.0]
### Changed
- Update `jsonschema` dependency
Expand Down
Loading

0 comments on commit 26510ad

Please sign in to comment.