Skip to content

Commit

Permalink
Merge pull request #8 from driv3r/chore/2021-04-20/upodate-jsonschema
Browse files Browse the repository at this point in the history
Update jsonschema to v0.6.1
  • Loading branch information
driv3r authored Jun 2, 2021
2 parents 49cc651 + 19e2538 commit 9240edc
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 110 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,9 @@ jobs:
- windows-latest
- macos-latest
ruby:
- 2.5.0
- 2.6.0
- 2.7.0
- 3.0.0
- 2.6
- 2.7
- 3.0

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.5
TargetRubyVersion: 2.6
NewCops: enable
SuggestExtensions: false
Exclude:
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.5.0
ruby 2.6.0
rust 1.48.0
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1]
### Changed
- Update `jsonschema` dependency
- Update minimum Ruby version to 2.6

## [0.5.0]
### Changed
- update `jsonschema` dependency
- match versioning with `jsonschema`
- Update `jsonschema` dependency
- Match versioning with `jsonschema`

## [0.3.2]
### Changed
Expand Down
111 changes: 15 additions & 96 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_schema"
version = "0.5.0"
version = "0.6.1"
authors = ["Leszek Zalewski <leszekzalewski@fastmail.fm>"]
edition = "2018"

Expand All @@ -10,5 +10,5 @@ crate-type = ["cdylib"]

[dependencies]
libc = "0.2.81"
jsonschema = "0.5.0"
jsonschema = "0.6.1"
serde_json = "1.0"
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rusty_json_schema (0.5.0)
rusty_json_schema (0.6.1)
ffi (~> 1.14)
json (>= 1.0)
thermite (~> 0)
Expand All @@ -14,7 +14,7 @@ GEM
diff-lcs (1.4.4)
ecma-re-validator (0.3.0)
regexp_parser (~> 2.0)
ffi (1.14.2)
ffi (1.15.0)
hana (1.3.7)
json (2.5.1)
json_schemer (0.2.17)
Expand Down
2 changes: 1 addition & 1 deletion lib/rusty_json_schema/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RustyJSONSchema

VERSION = "0.5.0"
VERSION = "0.6.1"

end
2 changes: 1 addition & 1 deletion rusty_json_schema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
Currently during heavy development.
STR

spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")

spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
Expand Down

0 comments on commit 9240edc

Please sign in to comment.