Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,36 @@ 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/v4.3.0...HEAD)
## [Unreleased](https://github.com/randycoulman/mix_test_interactive/compare/v5.0.0...HEAD)

## [v4.3.0](https://github.com/randycoulman/mix_test_interactive/compare/v4.2.0...v4.3.0) - 2024-03-21
## [v5.0.0](https://github.com/randycoulman/mix_test_interactive/compare/v4.3.0...v5.0.0) - 2025-06-09

### 💥 BREAKING CHANGE 💥

- This release drops support for Elixir 1.13. We officially support the
[same versions as Elixir itself](https://hexdocs.pm/elixir/compatibility-and-deprecations.html),
so support for Elixir 1.13 is no longer provided. ([#137](https://github.com/randycoulman/mix_test_interactive/pull/137))

There are no actual breaking changes in the code itself, so as long as you're on
Elixir 1.14 or later, you should have no problems upgrading to this version.

### Updated

- We address new deprecations and compiler warnings in Elixir 1.19. There are no
user-visible changes.
([#137](https://github.com/randycoulman/mix_test_interactive/pull/137) -
Thanks [@frankdugan3](https://github.com/frankdugan3) for contributing to the fixes!)

- We upgrade to the newest version of `ex_docs` to get the latest improvements.
([#137](https://github.com/randycoulman/mix_test_interactive/pull/137))

## [v4.3.0](https://github.com/randycoulman/mix_test_interactive/compare/v4.2.0...v4.3.0) - 2025-03-21

### Added

- Add a new `verbose` configuration setting and command-line option, disabled by default. When enabled, `mix test.interactive` will print the command it is about to run just before running the tests. ([#135](https://github.com/randycoulman/mix_test_interactive/pull/135))

## [v4.2.0](https://github.com/randycoulman/mix_test_interactive/compare/v4.1.2...v4.2.0) - 2024-03-19
## [v4.2.0](https://github.com/randycoulman/mix_test_interactive/compare/v4.1.2...v4.2.0) - 2025-03-19

### Fixed

Expand Down Expand Up @@ -187,7 +208,7 @@ have no problems upgrading to this version.

No functional changes; purely administrative.

## Changed
### Changed

- Migrated repository ownership from @influxdata to @randycoulman ([#60](https://github.com/randycoulman/mix_test_interactive/pull/60))

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ list of dependencies in your project's `mix.exs` file:
```elixir
def deps do
[
{:mix_test_interactive, "~> 4.3", only: :dev, runtime: false}
{:mix_test_interactive, "~> 5.0", 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 "4.3.0"
@version "5.0.0"
@source_url "https://github.com/randycoulman/mix_test_interactive"

def project do
Expand Down