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 for 1.4.0 release. #515

Merged
merged 3 commits into from
Aug 27, 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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,6 @@ jobs:
OUTPUT_TESTS: true

- name: Check examples
run: mix dialyzer --format short --ignore-exit-status
run: mix compile 2> /dev/null && mix dialyzer --format short --ignore-exit-status
env:
MIX_ENV: examples
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.15.4-otp-26
erlang 26.0.2
elixir 1.15.0-otp-26
erlang 26.0.1
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@ 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/)

## Unreleased changes post [1.3.0]
Versions follow [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html)

## Unreleased changes post [1.4.0]

## [1.4.0] - 2023-08-27

### Added
- --quiet-with-result flag.

### Changed
- (docs) Improved caching behaviour in example templates.

### Fixed
- Erroneous "DEPENDENCY MISSING" message in Elixir 1.15.
- Handle transitive optional dependencies in Elixir 1.15.

## [1.3.0] - 2023-04-08

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Dialyxir.Mixfile do
use Mix.Project

@source_url "https://github.com/jeremyjh/dialyxir"
@version "1.3.0"
@version "1.4.0"

def project do
[
Expand Down
5 changes: 2 additions & 3 deletions test/dialyxir/plt_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ defmodule Dialyxir.PltTest do
assert Plt.check(plts, &absname_plt/4) == :ok
end

assert capture_io(fun) ==
"==> dialyxir\n" <>
"Looking up modules in dialyxir_erlang-20.3.plt\n" <>
assert capture_io(fun) =~
"Looking up modules in dialyxir_erlang-20.3.plt\n" <>
"Looking up modules in dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n" <>
"/var/dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n" <>
"/var/dialyxir_erlang-20.3.plt\n"
Expand Down