Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions & Changelog for release 1.4.2 #522

Merged
merged 1 commit into from
Oct 21, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ Versions follow [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html)

## Unreleased changes post [1.4.0]

## [1.4.2] - 2023-10-21

### Changed
- Revert minimum required Elixir version back to 1.6.
- Improved performance in calculating Umbrella dependencies.

## [1.4.1] - 2023-08-30

### Changed
- Bump minimum required Elixir version to 1.12.

## [1.4.0] - 2023-08-27
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defmodule Dialyxir.Mixfile do
use Mix.Project

@source_url "https://github.com/jeremyjh/dialyxir"
@version "1.4.1"
@version "1.4.2"

def project do
[
app: :dialyxir,
version: @version,
elixir: ">= 1.12.0",
elixir: ">= 1.6.0",
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
package: package(),
Expand Down