Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uvlad7 committed Dec 27, 2024
1 parent 1818483 commit aa52254
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2024-12-27

### Fixed

- Handling of `max_path_len` which led `JsonSlicer.scan` not to match arrays and hashes to the longest path

- Exception encoding - `utf8` instead of `binary`

- Dev config - version in `Gemfile.lock` for old rubies

### Added

- Implement `with_path` flag

- Add kwargs/hash config to configure `yajl`, `with_path` flag and `verbose_error` option

## [0.1.1] - 2024-12-16

### Fixed
Expand Down
6 changes: 2 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
json_scanner (0.1.1)
json_scanner (0.2.0)

GEM
remote: https://rubygems.org/
Expand All @@ -10,9 +10,7 @@ GEM
diff-lcs (1.5.1)
json (2.9.0)
language_server-protocol (3.17.0.3)
mini_portile2 (2.8.8)
nokogiri (1.15.7)
mini_portile2 (~> 2.8.2)
nokogiri (1.15.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.7-x86_64-linux)
racc (~> 1.4)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile_old_ruby.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
json_scanner (0.1.1)
json_scanner (0.2.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/json_scanner/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JsonScanner
VERSION = "0.1.1"
VERSION = "0.2.0"
end

0 comments on commit aa52254

Please sign in to comment.