File tree Expand file tree Collapse file tree 5 files changed +21
-8
lines changed Expand file tree Collapse file tree 5 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,6 @@ jobs:
130
130
OUTPUT_TESTS : true
131
131
132
132
- name : Check examples
133
- run : mix dialyzer --format short --ignore-exit-status
133
+ run : mix compile 2> /dev/null && mix dialyzer --format short --ignore-exit-status
134
134
env :
135
135
MIX_ENV : examples
Original file line number Diff line number Diff line change 1
- elixir 1.15.4 -otp-26
2
- erlang 26.0.2
1
+ elixir 1.15.0 -otp-26
2
+ erlang 26.0.1
Original file line number Diff line number Diff line change @@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
6
6
7
- ## Unreleased changes post [ 1.3.0]
7
+ Versions follow [ Semantic Versioning 2.0] ( https://semver.org/spec/v2.0.0.html )
8
+
9
+ ## Unreleased changes post [ 1.4.0]
10
+
11
+ ## [ 1.4.0] - 2023-08-27
12
+
13
+ ### Added
14
+ - --quiet-with-result flag.
15
+
16
+ ### Changed
17
+ - (docs) Improved caching behaviour in example templates.
18
+
19
+ ### Fixed
20
+ - Erroneous "DEPENDENCY MISSING" message in Elixir 1.15.
21
+ - Handle transitive optional dependencies in Elixir 1.15.
8
22
9
23
## [ 1.3.0] - 2023-04-08
10
24
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Dialyxir.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/jeremyjh/dialyxir"
5
- @ version "1.3 .0"
5
+ @ version "1.4 .0"
6
6
7
7
def project do
8
8
[
Original file line number Diff line number Diff line change @@ -16,9 +16,8 @@ defmodule Dialyxir.PltTest do
16
16
assert Plt . check ( plts , & absname_plt / 4 ) == :ok
17
17
end
18
18
19
- assert capture_io ( fun ) ==
20
- "==> dialyxir\n " <>
21
- "Looking up modules in dialyxir_erlang-20.3.plt\n " <>
19
+ assert capture_io ( fun ) =~
20
+ "Looking up modules in dialyxir_erlang-20.3.plt\n " <>
22
21
"Looking up modules in dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n " <>
23
22
"/var/dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n " <>
24
23
"/var/dialyxir_erlang-20.3.plt\n "
You can’t perform that action at this time.
0 commit comments