Skip to content

Commit

Permalink
bump version 1.11.0 -> 1.11.1 #46
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed May 13, 2023
1 parent c352e0e commit a66285f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Install by adding `useful` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:useful, "~> 1.11.0"}
{:useful, "~> 1.11.1"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Useful.MixProject do
[
app: :useful,
description: "A collection of useful functions",
version: "1.11.0",
version: "1.11.1",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
5 changes: 4 additions & 1 deletion test/useful_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ defmodule UsefulTest do
%{"text" => "camelCase", "backgroundColor" => "#9fe1e7"},
%{"text" => "underscore_in_key", "inserted_at" => "2023-03-20T02:00:00Z"}
],
"name" => "alex", id: 1, nested: %{"age" => 17, height: 185}
"name" => "alex",
id: 1,
nested: %{"age" => 17, height: 185}
}

# dbg(map)
actual = Useful.atomize_map_keys(map)
# dbg(actual)
Expand Down

0 comments on commit a66285f

Please sign in to comment.