From 651aada66815657991ca0fe9e20d469b56ba54f8 Mon Sep 17 00:00:00 2001 From: Alex Veenendaal Date: Wed, 31 Jul 2019 11:02:02 +0100 Subject: [PATCH] v3.0.1 --- CHANGELOG.md | 5 +++++ README.md | 2 +- mix.exs | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ff43a4..a1572b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## v3.0.1 +### Fixed +- crash when retrieving a path which contains a null value + + ## v3.0.0 ### Added - add/add! - adds values indicated by pointers diff --git a/README.md b/README.md index 76fb79b..fdc788b 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add a dependency to your project `mix.exs`: ```Elixir def deps do - [{:odgn_json_pointer, "~> 3.0.0"}] + [{:odgn_json_pointer, "~> 3.0.1"}] end ``` diff --git a/mix.exs b/mix.exs index b45dae1..e18ef4b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule JsonPointer.Mixfile do use Mix.Project - @version "3.0.0" + @version "3.0.1" def project do [ @@ -51,7 +51,7 @@ defmodule JsonPointer.Mixfile do defp package do [ - name: "ODGN JSON Pointer", + name: "odgn_json_pointer", licenses: ["MIT"], maintainers: ["Alexander Veenendaal"], links: %{"GitHub" => "https://github.com/odogono/elixir-jsonpointer"},