Skip to content

Commit a8c8aec

Browse files
Release 0.16.0
1 parent 06dd215 commit a8c8aec

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Nothing yet.
1111

12+
## [0.16.0] - 2024-03-01
13+
14+
- **Changed** minimum supported Elixir version from Elixir 1.7 to Elixir 1.12
15+
- **Added** `gettext` tool
16+
- **Fixed** incorrect relative path handling in Elixir 1.16
17+
1218
## [0.15.0] - 2022-12-05
1319

1420
- **Added** `mix_audit` tool

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ![ex_check](./assets/logo-with-name.svg)
22

33
[![Hex version](https://img.shields.io/hexpm/v/ex_check.svg?color=hsl(265,40%,60%))](https://hex.pm/packages/ex_check)
4-
[![Hex docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/ex_check/)
5-
[![Build status](https://img.shields.io/github/workflow/status/karolsluszniak/ex_check/check/master)](https://github.com/karolsluszniak/ex_check/actions)
4+
[![Hex docs](https://img.shields.io/badge/hex-docs-lightgreen.svg?color=hsl(265,40%,60%))](https://hexdocs.pm/ex_check/)
5+
[![Build status](https://img.shields.io/github/actions/workflow/status/karolsluszniak/ex_check/check.yml?branch=master)](https://github.com/karolsluszniak/ex_check/actions)
66
[![Downloads](https://img.shields.io/hexpm/dt/ex_check.svg)](https://hex.pm/packages/ex_check)
77
[![License](https://img.shields.io/github/license/karolsluszniak/ex_check.svg)](https://github.com/karolsluszniak/ex_check/blob/master/LICENSE.md)
88
[![Last updated](https://img.shields.io/github/last-commit/karolsluszniak/ex_check.svg)](https://github.com/karolsluszniak/ex_check/commits/master)
@@ -31,7 +31,7 @@ Takes care of the little details, so you don't have to.
3131
- Ensures that output from tools is [ANSI formatted & colorized](https://hexdocs.pm/ex_check/Mix.Tasks.Check.html#module-tool-processes-and-ansi-formatting)
3232
- Retries ExUnit with the `--failed` flag
3333

34-
Read more in the introductory ["One task to rule all Elixir analysis & testing tools"](http://cloudless.studio/articles/49-one-task-to-rule-all-elixir-analysis-testing-tools) article.
34+
Read more in the introductory ["One task to rule all Elixir analysis & testing tools"](https://cloudless.studio/one-task-to-rule-all-elixir-analysis-testing-tools) article.
3535

3636
## Getting started
3737

@@ -110,7 +110,7 @@ You should keep local and CI configuration as consistent as possible by putting
110110

111111
Learn more about the tools included in the check as well as its workflow, configuration and options [on HexDocs](https://hexdocs.pm/ex_check/Mix.Tasks.Check.html) or by running `mix help check`.
112112

113-
Want to write your own code check? Get yourself started by reading the ["Writing your first Elixir code check"](http://cloudless.studio/articles/50-writing-your-first-elixir-code-check) article.
113+
Want to write your own code check? Get yourself started by reading the ["Writing your first Elixir code check"](https://cloudless.studio/writing-your-first-elixir-code-check) article.
114114

115115
## Continuous Integration
116116

mix.exs

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

44
@github_url "https://github.com/karolsluszniak/ex_check"
5-
@version "0.15.0"
5+
@version "0.16.0"
66

77
def project do
88
[

0 commit comments

Comments
 (0)