From bd5e2d9ed2a56f5347a5f459778b18c2c89070eb Mon Sep 17 00:00:00 2001 From: Tyler Young Date: Mon, 22 Jul 2024 08:59:25 -0500 Subject: [PATCH] Prepare v0.2.0 release --- CHANGELOG.md | 7 +++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 456ef99..e30feef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/README.md b/README.md index 2fd8ae6..aa07f22 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index ca2eff1..5d0fd40 100644 --- a/mix.exs +++ b/mix.exs @@ -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,