Skip to content

Commit

Permalink
Bump 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Kapkov committed Mar 25, 2018
1 parent 3427f1b commit 2027ab9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ Change log itself follows [Keep a CHANGELOG](http://keepachangelog.com) format.

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## 0.10.0

### Added

* New maintainer [Toby Hinloopen (@tobyhinloopen)](https://github.com/tobyhinloopen)
* Gitter chat [room](https://gitter.im/igas/faker) [[@igas][]]
* `Faker.Gov.Us.ssn/0` added to generate US Social Security numbers [[@sotojuan][]]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fake data.

## Quickstart

* add `{:faker, "~> 0.9"}` to your deps in `mix.exs`;
* add `{:faker, "~> 0.10"}` to your deps in `mix.exs`;
* add `:faker` to list of your applications;
* jump to [usage examples](#usage).

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

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

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Faker.Mixfile do
use Mix.Project

@version "0.9.0"
@version "0.10.0"

def project do
[
Expand Down

0 comments on commit 2027ab9

Please sign in to comment.