Skip to content

Commit

Permalink
Bump 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Kapkov committed Apr 29, 2017
1 parent 5d685da commit 10e4834
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Expand Up @@ -3,8 +3,8 @@ sudo: false
elixir:
- 1.1.1
- 1.2.6
- 1.3.2
- 1.4.0
- 1.3.4
- 1.4.2
otp_release:
- 18.0
- 18.1
Expand All @@ -13,6 +13,7 @@ otp_release:
- 19.0
- 19.1
- 19.2
- 19.3
before_script:
- kerl list installations
notifications:
Expand All @@ -26,3 +27,5 @@ matrix:
elixir: 1.1.1
- otp_release: 19.2
elixir: 1.1.1
- otp_release: 19.3
elixir: 1.1.1
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,20 @@ Change log itself follows [Keep a CHANGELOG](http://keepachangelog.com) format.

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## 0.8.0

### Added

* `Faker.Internet.UserAgent` [@devshane][]
* `Faker.Superhero` [@orieken][]
* `Faker.Code.iban` [@tobyhinloopen][]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -5,7 +5,7 @@ fake data.

## Quickstart

* add `{:faker, "~> 0.7"}` to your deps in `mix.exs`;
* add `{:faker, "~> 0.8"}` to your deps in `mix.exs`;
* add `:faker` to list of your applications;
* jump to [usage examples](https://github.com/igas/faker/blob/master/USAGE.md).

Expand All @@ -18,7 +18,7 @@ Example `mix.exs`:
end
...
defp deps do
[{:faker, "~> 0.7"}]
[{:faker, "~> 0.8"}]
end
...
```
Expand All @@ -30,7 +30,7 @@ In your `mix.exs` file, add the `:faker` project to your dependencies

``` elixir
defp deps do
[{:faker, "~> 0.7", only: :test}]
[{:faker, "~> 0.8", only: :test}]
end
```

Expand Down
6 changes: 3 additions & 3 deletions mix.exs
@@ -1,7 +1,7 @@
defmodule Faker.Mixfile do
use Mix.Project

@version "0.7.0"
@version "0.8.0"

def project do
[
Expand All @@ -25,9 +25,9 @@ defmodule Faker.Mixfile do

defp deps do
[
{:ex_doc, "~> 0.7", only: :docs},
{:ex_doc, ">= 0.0.0", only: :docs},
{:earmark, ">= 0.0.0", only: :docs},
{:credo, "~> 0.3", only: [:dev, :test]}
{:credo, ">= 0.0.0", only: [:dev, :test]}
]
end

Expand Down
8 changes: 4 additions & 4 deletions mix.lock
@@ -1,4 +1,4 @@
%{"bunt": {:hex, :bunt, "0.1.6", "5d95a6882f73f3b9969fdfd1953798046664e6f77ec4e486e6fafc7caad97c6f", [:mix], []},
"credo": {:hex, :credo, "0.5.3", "0c405b36e7651245a8ed63c09e2d52c2e2b89b6d02b1570c4d611e0fcbecf4a2", [:mix], [{:bunt, "~> 0.1.6", [hex: :bunt, optional: false]}]},
"earmark": {:hex, :earmark, "1.0.3", "89bdbaf2aca8bbb5c97d8b3b55c5dd0cff517ecc78d417e87f1d0982e514557b", [:mix], []},
"ex_doc": {:hex, :ex_doc, "0.14.5", "c0433c8117e948404d93ca69411dd575ec6be39b47802e81ca8d91017a0cf83c", [:mix], [{:earmark, "~> 1.0", [hex: :earmark, optional: false]}]}}
%{"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm"},
"credo": {:hex, :credo, "0.7.3", "9827ab04002186af1aec014a811839a06f72aaae6cd5eed3919b248c8767dbf3", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}], "hexpm"},
"earmark": {:hex, :earmark, "1.2.0", "bf1ce17aea43ab62f6943b97bd6e3dc032ce45d4f787504e3adf738e54b42f3a", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.15.1", "d5f9d588fd802152516fccfdb96d6073753f77314fcfee892b15b6724ca0d596", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"}}

0 comments on commit 10e4834

Please sign in to comment.