Skip to content

Commit ffcd849

Browse files
authored
Merge pull request #515 from jeremyjh/jh-bump-ver-1.4
Bump versions for 1.4.0 release.
2 parents 956c5d7 + b766039 commit ffcd849

File tree

5 files changed

+21
-8
lines changed

5 files changed

+21
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ jobs:
130130
OUTPUT_TESTS: true
131131

132132
- 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
134134
env:
135135
MIX_ENV: examples

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.15.4-otp-26
2-
erlang 26.0.2
1+
elixir 1.15.0-otp-26
2+
erlang 26.0.1

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

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.
822

923
## [1.3.0] - 2023-04-08
1024

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Dialyxir.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/jeremyjh/dialyxir"
5-
@version "1.3.0"
5+
@version "1.4.0"
66

77
def project do
88
[

test/dialyxir/plt_test.exs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ defmodule Dialyxir.PltTest do
1616
assert Plt.check(plts, &absname_plt/4) == :ok
1717
end
1818

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" <>
2221
"Looking up modules in dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n" <>
2322
"/var/dialyxir_erlang-20.3_elixir-1.6.2_deps-dev.plt\n" <>
2423
"/var/dialyxir_erlang-20.3.plt\n"

0 commit comments

Comments
 (0)