Skip to content

Commit

Permalink
Release 0.17.0 (#443)
Browse files Browse the repository at this point in the history
* Bumped version to 0.17.0

* Bumped version to 0.17.0

* Prepared CHANGELOG.md for release

* Replace elixir v1.13.0-rc.0 with v1.13.x
  • Loading branch information
Kurt Friedrich authored Dec 6, 2021
1 parent a23a82f commit 6d342c6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ jobs:

otp: 24.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 22.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 23.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 24.x

Expand Down Expand Up @@ -217,15 +217,15 @@ jobs:

otp: 24.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 22.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 23.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 24.x

Expand Down Expand Up @@ -330,14 +330,14 @@ jobs:

otp: 24.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 22.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 23.x

- elixir: v1.13.0-rc.0
- elixir: v1.13.x

otp: 24.x
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ Change log itself follows [Keep a CHANGELOG](http://keepachangelog.com) format.

## Unreleased

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## 0.17.0

### Added
- `Faker.Internet.StatusCode` [[@emmetreza](https://github.com/emmetreza)]
- CI workflow using GitHub Actions [[@anthonator](https://github.com/anthonator)]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ fake data.

## Quickstart

* add `{:faker, "~> 0.16"}` to your deps in `mix.exs`:
* add `{:faker, "~> 0.17"}` to your deps in `mix.exs`:

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

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

@source_url "https://github.com/elixirs/faker"
@version "0.16.0"
@version "0.17.0"

def project do
[
Expand Down

0 comments on commit 6d342c6

Please sign in to comment.