Skip to content

Commit

Permalink
🔖 Prepare v3.1.0 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
randycoulman authored Aug 24, 2024
1 parent b8a22e5 commit a606107
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/randycoulman/mix_test_interactive/compare/v3.0.0...HEAD)
## [Unreleased](https://github.com/randycoulman/mix_test_interactive/compare/v3.1.0...HEAD)

## [v3.1.0](https://github.com/randycoulman/mix_test_interactive/compare/v3.0.0...v3.1.0) - 2024-08-24

### Added

- Add a new `command` configuration option that allows use of a custom command instead of `mix` for running tests. See the [README](https://github.com/randycoulman/mix_test_interactive#command-use-a-custom-command) for more details. ([#96](https://github.com/randycoulman/mix_test_interactive/pull/96))

### Changed

- Added [documentation for missing configuration options](https://github.com/randycoulman/mix_test_interactive#configuration) in the README. ([#96](https://github.com/randycoulman/mix_test_interactive/pull/96))

## [v3.0.0](https://github.com/randycoulman/mix_test_interactive/compare/v2.1.0...v3.0.0) - 2024-07-13

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The package can be installed by adding `mix_test_interactive` to your list of de
```elixir
def deps do
[
{:mix_test_interactive, "~> 3.0", only: :dev, runtime: false}
{:mix_test_interactive, "~> 3.1", only: :dev, runtime: false}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule MixTestInteractive.MixProject do
use Mix.Project

@version "3.0.0"
@version "3.1.0"
@source_url "https://github.com/randycoulman/mix_test_interactive"

def project do
Expand Down

0 comments on commit a606107

Please sign in to comment.