Skip to content

Commit

Permalink
Bump 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Kapkov committed Oct 19, 2015
1 parent d47f16b commit 87d75ed
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 101 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 0.6.0-dev

# 0.6.0

* Most of functions covered by specs and docs now
* Removed JSON programming and poison dependency [@saulecabrera, @vforvova]
* Add Faker.Shakespeare [@adam-wanninger]
* Fix SSL issues in Internet.image_url/0 [@zmoshansky]
* Improve tests [@lowks]
* Elixir 1.1 support
* Add Faker.App with author/0, name/0 and version/0
* Add Faker.Address.country_code/0
* Add Faker.Bitcoin with address/0 and address/1
Expand Down
101 changes: 4 additions & 97 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,103 +35,6 @@ want to use it in tests, just add `Faker.start` to `test/test_helper.exs`, and
use any function decribed below. For example, if you nead random name use
`Faker.Name.name`.

## Generators / Providers

* **Address**
* `building_number()`
* `city_prefix()`
* `city_suffix()`
* `city()`
* `country()`
* `country_code()`
* `latitude()`
* `longitude()`
* `postcode()`
* `secondary_address()`
* `state_abbr()`
* `state()`
* `street_address(secondary_address \\ false)`
* `street_name()`
* `street_suffix()`
* `time_zone()`
* `zip_code()`
* `zip()`
* **App**
* `author()`
* `name()`
* `version()`
* **Avatar**
* `image_url()`
* `image_url(slug)`
* `image_url(width, height)`
* `image_url(slug, width, height)`
* **Code**
* `isbn()`
* `isbn10()`
* `isbn13()`
* `issn()`
* **Commerce**
* `color()`
* `department()`
* `price()`
* `product_name()`
* `product_name_adjective()`
* `product_name_material()`
* `product_name_product()`
* **Company**
* `bs()`
* `bullshit()`
* `bullshit_prefix()`
* `bullshit_suffix()`
* `buzzword()`
* `buzzword_prefix()`
* `buzzword_suffix()`
* `catch_phrase()`
* `name()`
* `suffix()`
* **Internet**
* `domain_name()`
* `domain_suffix()`
* `domain_word()`
* `email()`
* `free_email()`
* `free_email_service()`
* `image_url()`
* `ip_v4_address()`
* `ip_v6_address()`
* `mac_address()`
* `safe_email()`
* `url()`
* `user_name()`
* **Lorem**
* `characters(range \\ 15..255)`
* `characters(num)`
* `paragraph(range \\ 2..5)`
* `paragraph(num)`
* `paragraphs(range \\ 2..5)`
* `paragraphs(num)`
* `sentence(range \\ 4..10)`
* `sentence(num, mark)`
* `sentences(range \\ 2..5)`
* `sentences(num)`
* `word()`
* `sentences(range \\ 3..6)`
* `sentences(num)`
* **Name**
* `first_name()`
* `last_name()`
* `name()`
* `prefix()`
* `suffix()`
* `title()`
* **Team**
* `creature()`
* `name()`

## Thanks

[![Sponsored by Evil Martians](https://evilmartians.com/badges/sponsored-by-evil-martians.svg)](http://evilmartians.com/)

## TODO

* Add more generators
Expand Down Expand Up @@ -160,6 +63,10 @@ other tools.

You can build templates for testing purposes with the
[Blacksmith](https://github.com/batate/blacksmith) project. See the Blacksmith

## Thanks

[![Sponsored by Evil Martians](https://evilmartians.com/badges/sponsored-by-evil-martians.svg)](http://evilmartians.com/)
[readme](https://github.com/batate/blacksmith#readme) for details.

# [License](https://github.com/igas/faker/blob/master/LICENSE)
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Faker.Mixfile do
def project do
[
app: :faker,
version: "0.6.0-dev",
version: "0.6.0",
elixir: "~> 1.0",
description: "Faker is a pure Elixir library for generating fake data.",
package: package,
Expand All @@ -30,7 +30,7 @@ defmodule Faker.Mixfile do

defp package do
[
files: ["lib", "priv", "mix.exs", "mix.lock"],
files: ["lib", "mix.exs", "mix.lock"],
contributors: ["Igor Kapkov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/igas/faker"}
Expand Down

0 comments on commit 87d75ed

Please sign in to comment.