Skip to content

Commit

Permalink
0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed May 7, 2018
1 parent 1cec571 commit 113ff97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ config :paper_trail, repo: PaperTrail.Repo, originator: [name: :user, model: Use

config :paper_trail, PaperTrail.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
username: System.get_env("POSTGRES_USER"),
password: System.get_env("POSTGRES_PASSWORD"),
database: "paper_trail_test",
hostname: "localhost",
hostname: System.get_env("POSTGRES_HOST"),
poolsize: 10

config :paper_trail, PaperTrail.UUIDRepo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
username: System.get_env("POSTGRES_USER"),
password: System.get_env("POSTGRES_PASSWORD"),
database: "paper_trail_uuid_test",
hostname: "localhost",
hostname: System.get_env("POSTGRES_HOST"),
poolsize: 10
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule PaperTrail.Mixfile do
def project do
[
app: :paper_trail,
version: "0.7.9",
version: "0.8.0",
elixir: "~> 1.6",
description: description(),
build_embedded: Mix.env() == :prod,
Expand Down

0 comments on commit 113ff97

Please sign in to comment.