Skip to content

Commit

Permalink
chore(release): v0.19.0-alpha.1 [skip ci]
Browse files Browse the repository at this point in the history
## [0.19.0-alpha.1](v0.18.0...v0.19.0-alpha.1) (2025-02-01)

### Features

* add release automation ([#581](#581)) ([0d08ed2](0d08ed2))

### Bug Fixes

* **deps:** add missing @semantic-release/exec ([#584](#584)) ([bfea5c4](bfea5c4))
* **ci:** add workflow_call ([#586](#586)) ([c25f43e](c25f43e))
* **ci:** allow write ([#590](#590)) ([d49419a](d49419a))
* docs generation ([#594](#594)) ([572dfb4](572dfb4))
* elixir 17 & 18 compatibility ([#565](#565)) ([f3d4808](f3d4808))
* elixir deprecations ([#571](#571)) ([b7e4af0](b7e4af0))
* makeup packages ([#592](#592)) ([3f8cbc1](3f8cbc1))
* **ci:** permissions ([#591](#591)) ([d78c8f1](d78c8f1))
* remove nil option for Airports IATA ([#492](#492)) ([59951ec](59951ec))
* **ci:** typo in workflow path ([#585](#585)) ([8ed49eb](8ed49eb))
  • Loading branch information
semantic-release-bot committed Feb 1, 2025
1 parent 572dfb4 commit a55add8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.19.0-alpha.1](https://github.com/elixirs/faker/compare/v0.18.0...v0.19.0-alpha.1) (2025-02-01)

### Features

* add release automation ([#581](https://github.com/elixirs/faker/issues/581)) ([0d08ed2](https://github.com/elixirs/faker/commit/0d08ed231c742b247e692f0b9a3773a4ce2e172b))

### Bug Fixes

* **deps:** add missing @semantic-release/exec ([#584](https://github.com/elixirs/faker/issues/584)) ([bfea5c4](https://github.com/elixirs/faker/commit/bfea5c430bb518e04fd1d508266ccb2c72c07cfd))
* **ci:** add workflow_call ([#586](https://github.com/elixirs/faker/issues/586)) ([c25f43e](https://github.com/elixirs/faker/commit/c25f43efa234d349a6adab22e60df58fcaf61db1))
* **ci:** allow write ([#590](https://github.com/elixirs/faker/issues/590)) ([d49419a](https://github.com/elixirs/faker/commit/d49419acdb81228ce0a5cfdfa8120fa427a892ad))
* docs generation ([#594](https://github.com/elixirs/faker/issues/594)) ([572dfb4](https://github.com/elixirs/faker/commit/572dfb4060a7d2a266da2edc3bde9111a8bd6c66))
* elixir 17 & 18 compatibility ([#565](https://github.com/elixirs/faker/issues/565)) ([f3d4808](https://github.com/elixirs/faker/commit/f3d480885b12fba632ff21cb3f3b74845c362cb4))
* elixir deprecations ([#571](https://github.com/elixirs/faker/issues/571)) ([b7e4af0](https://github.com/elixirs/faker/commit/b7e4af033b3d5e1630cf642af96c5d7c03100c6f))
* makeup packages ([#592](https://github.com/elixirs/faker/issues/592)) ([3f8cbc1](https://github.com/elixirs/faker/commit/3f8cbc143184344d09ef53e1740eff0c49379181))
* **ci:** permissions ([#591](https://github.com/elixirs/faker/issues/591)) ([d78c8f1](https://github.com/elixirs/faker/commit/d78c8f1abf683cf9b36908338b20e7dd064fe330))
* remove nil option for Airports IATA ([#492](https://github.com/elixirs/faker/issues/492)) ([59951ec](https://github.com/elixirs/faker/commit/59951ec3a72babae936fff22883b5e821971b8b6))
* **ci:** typo in workflow path ([#585](https://github.com/elixirs/faker/issues/585)) ([8ed49eb](https://github.com/elixirs/faker/commit/8ed49eba4096eac5b12b6913e4775cb2f69785c4))

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ fake data.

## Quickstart

* add `{:faker, "~> 0.18"}` to your deps in `mix.exs`:
* add `{:faker, "~> 0.19.0-alpha.1"}` to your deps in `mix.exs`:

```elixir
defp deps do
[
{:faker, "~> 0.18", only: :test}
{:faker, "~> 0.19.0-alpha.1", 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.18.0"
@version "0.19.0-alpha.1"

def project do
[
Expand Down

0 comments on commit a55add8

Please sign in to comment.