Skip to content

Commit 50c00dd

Browse files
committed
v3.0.0
1 parent 9c4a405 commit 50c00dd

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## v3.0.0
78
### Added
89
- add/add! - adds values indicated by pointers
910
- options can be passed to operations. only option so far is :strict which affects set/add behaviour
10-
- test - checks whether the given pointer has the given value
11+
- added JSONPointer.test - checks whether the given pointer has the given value
1112

1213
### Changed
13-
- has changed to has? as it returns a single value
14+
- has changed to has? as it returns a single boolean
1415
- stricter parsing of integer indexes
1516
- increased terseness of error messages
1617
- remove now actually reduces the list size, rather than replace with nil

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add a dependency to your project `mix.exs`:
1313

1414
```Elixir
1515
def deps do
16-
[{:odgn_json_pointer, "~> 2.5"}]
16+
[{:odgn_json_pointer, "~> 3.0.0"}]
1717
end
1818
```
1919

mix.exs

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

4-
@version "2.5.0"
4+
@version "3.0.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)