Skip to content

Commit 4985cb4

Browse files
committed
Release 0.1.10
1 parent 4e92b97 commit 4985cb4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.10] - 2025-10-28
11+
12+
### Fixed
13+
- **Windows structural repairs**: Treat CRLF pairs as whitespace when scanning for the next significant character so Layer 2 keeps nested braces open on Windows-style inputs reported by CI.
14+
1015
## [0.1.9] - 2025-10-28
1116

1217
### Fixed
@@ -348,7 +353,8 @@ This is a **100% rewrite** - all previous code has been replaced with the new la
348353
- Minimal memory overhead (< 8KB for repairs)
349354
- All operations pass performance thresholds
350355

351-
[Unreleased]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.9...HEAD
356+
[Unreleased]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.10...HEAD
357+
[0.1.10]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.9...v0.1.10
352358
[0.1.9]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.8...v0.1.9
353359
[0.1.8]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.7...v0.1.8
354360
[0.1.7]: https://github.com/nshkrdotcom/json_remedy/compare/v0.1.6...v0.1.7

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Runs **before** the main layer pipeline to handle complex patterns that would ot
7474

7575
### 🏗️ **Structural Repairs (Layer 2)**
7676
- **Missing closing delimiters**: `{"name": "Alice"``{"name": "Alice"}`
77-
- **Array element terminators**: Multi-item arrays recover missing braces/brackets between elements *(v0.1.9)*
77+
- **Array element terminators**: Multi-item arrays recover missing braces/brackets between elements *(v0.1.10)*
7878
- **Extra delimiters**: `{"name": "Alice"}}}``{"name": "Alice"}`
7979
- **Mismatched delimiters**: `[{"name": "Alice"}]` → proper structure
8080
- **Missing opening braces**: `["key": "value"]``[{"key": "value"}]`
@@ -160,7 +160,7 @@ Add JsonRemedy to your `mix.exs`:
160160
```elixir
161161
def deps do
162162
[
163-
{:json_remedy, "~> 0.1.9"}
163+
{:json_remedy, "~> 0.1.10"}
164164
]
165165
end
166166
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule JsonRemedy.MixProject do
22
use Mix.Project
33

4-
@version "0.1.9"
4+
@version "0.1.10"
55
@source_url "https://github.com/nshkrdotcom/json_remedy"
66

77
def project do

0 commit comments

Comments
 (0)