Skip to content

Commit

Permalink
Merge pull request #515 from jeremyjh/jh-bump-ver-1.4
Browse files Browse the repository at this point in the history
Bump versions for 1.4.0 release.
  • Loading branch information
jeremyjh committed Aug 27, 2023
2 parents 956c5d7 + b766039 commit ffcd849
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
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
@@ -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
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
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
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

0 comments on commit ffcd849

Please sign in to comment.