Skip to content

Commit 2027ab9

Browse files
author
Igor Kapkov
committed
Bump 0.10.0
1 parent 3427f1b commit 2027ab9

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ Change log itself follows [Keep a CHANGELOG](http://keepachangelog.com) format.
1010

1111
### Added
1212

13+
### Changed
14+
15+
### Deprecated
16+
17+
### Removed
18+
19+
### Fixed
20+
21+
### Security
22+
23+
## 0.10.0
24+
25+
### Added
26+
1327
* New maintainer [Toby Hinloopen (@tobyhinloopen)](https://github.com/tobyhinloopen)
1428
* Gitter chat [room](https://gitter.im/igas/faker) [[@igas][]]
1529
* `Faker.Gov.Us.ssn/0` added to generate US Social Security numbers [[@sotojuan][]]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fake data.
66

77
## Quickstart
88

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

@@ -19,7 +19,7 @@ Example `mix.exs`:
1919
end
2020
...
2121
defp deps do
22-
[{:faker, "~> 0.9"}]
22+
[{:faker, "~> 0.10"}]
2323
end
2424
...
2525
```
@@ -31,7 +31,7 @@ In your `mix.exs` file, add the `:faker` project to your dependencies
3131

3232
``` elixir
3333
defp deps do
34-
[{:faker, "~> 0.9", only: :test}]
34+
[{:faker, "~> 0.10", only: :test}]
3535
end
3636
```
3737

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Faker.Mixfile do
22
use Mix.Project
33

4-
@version "0.9.0"
4+
@version "0.10.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)