File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
55## [ Unreleased]
66
7+ ## v3.0.1
8+ ### Fixed
9+ - crash when retrieving a path which contains a null value
10+
11+
712## v3.0.0
813### Added
914- add/add! - adds values indicated by pointers
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Add a dependency to your project `mix.exs`:
1313
1414``` Elixir
1515def deps do
16- [{:odgn_json_pointer , " ~> 3.0.0 " }]
16+ [{:odgn_json_pointer , " ~> 3.0.1 " }]
1717end
1818```
1919
Original file line number Diff line number Diff line change 11defmodule JsonPointer.Mixfile do
22 use Mix.Project
33
4- @ version "3.0.0 "
4+ @ version "3.0.1 "
55
66 def project do
77 [
@@ -51,7 +51,7 @@ defmodule JsonPointer.Mixfile do
5151
5252 defp package do
5353 [
54- name: "ODGN JSON Pointer " ,
54+ name: "odgn_json_pointer " ,
5555 licenses: [ "MIT" ] ,
5656 maintainers: [ "Alexander Veenendaal" ] ,
5757 links: % { "GitHub" => "https://github.com/odogono/elixir-jsonpointer" } ,
You can’t perform that action at this time.
0 commit comments