Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neighman committed Dec 18, 2015
1 parent de1b95b commit be3c041
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# v 0.3.0

Update the schema to use a map for claims.

To update you'll need to change your schema.

```
mix ecto.gen.migration update_guardian_db_tokens
alter table(:guardian_tokens) do
remove :claims
add :claims, :map
end
```

# V 0.1.0

Initial release
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
defmodule GuardianDb.Mixfile do
use Mix.Project

@version "0.2.0"
@version "0.3.0"

def project do
[app: :guardian_db,
version: @version,
description: "DB tracking for token validity",
elixir: "~> 1.0",
elixir: "~> 1.1",
elixirc_paths: _elixirc_paths(Mix.env),
package: package,
build_embedded: Mix.env == :prod,
Expand Down

0 comments on commit be3c041

Please sign in to comment.