Skip to content

Commit

Permalink
Prepare v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
s3cur3 committed Jul 22, 2024
1 parent 07fb89d commit bd5e2d9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.2.0

There are two new features in this release thanks to new contributor @axelson:

* [Support longer test names](https://github.com/s3cur3/parameterized_test/pull/17)
* [Support comments and Obsidian markdown table format](https://github.com/s3cur3/parameterized_test/pull/16)

## v0.1.0

- Renamed to `ParameterizedTest`, with the accompanying macro `param_test`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ parameterized tests, and property tests for a given piece of functionality.
```elixir
def deps do
[
{:parameterized_test, "~> 0.1.0", only: [:test]},
{:parameterized_test, "~> 0.2", oly: [:test]},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule ParameterizedTest.MixProject do
def project do
[
app: :parameterized_test,
version: "0.1.0",
version: "0.2.0",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit bd5e2d9

Please sign in to comment.