Skip to content

Commit 4c85e81

Browse files
committed
Release v1.4.44
- version bump - Release Notes - Readme update
1 parent 7eb0dcc commit 4c85e81

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
- [EarmarkParser.as_ast/2](#earmarkparseras_ast2)
5151
- [EarmarkParser.version/0](#earmarkparserversion0)
5252
- [Contributing](#contributing)
53+
- [mix format](#mix-format)
54+
- [Editing README](#editing-readme)
5355
- [Author](#author)
5456
- [LICENSE](#license)
5557

@@ -747,6 +749,13 @@ The AST is exposed in the spirit of [Floki's](https://hex.pm/packages/floki).
747749

748750
Pull Requests are happily accepted.
749751

752+
### mix format
753+
754+
Now we have decided to enforce formatting, when providing PRs please be sure that that `mix format --check-formatted` passes
755+
because it will be tested in the GHA workflow
756+
757+
### Editing README
758+
750759
Please be aware of one _caveat_ when correcting/improving `README.md`.
751760

752761
The `README.md` is generated by the coammand mix task `xtra` from `README.md.eex` and
@@ -764,7 +773,7 @@ Thank you all who have already helped with Earmark/EarmarkParser, your names are
764773

765774
Copyright © 2014,5,6,7,8,9;2020 Dave Thomas, The Pragmatic Programmers
766775
@/+pragdave, dave@pragprog.com
767-
Copyright © 2020,1,2,3 Robert Dober
776+
Copyright © 2020,1,2,3,4,5 Robert Dober
768777
robert.dober@gmail.com
769778

770779
## LICENSE

README.md.eex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Thank you all who have already helped with Earmark/EarmarkParser, your names are
4545

4646
Copyright © 2014,5,6,7,8,9;2020 Dave Thomas, The Pragmatic Programmers
4747
@/+pragdave, dave@pragprog.com
48-
Copyright © 2020,1,2,3 Robert Dober
48+
Copyright © 2020,1,2,3,4,5 Robert Dober
4949
robert.dober@gmail.com
5050

5151
## LICENSE

RELEASE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55

66
- [Parsing HTML]
77

8+
## [EarmarkParser](https://hex.pm/packages/earmark_parser) 1.4.43 2025-03-12
9+
10+
- [PR #165](https://github.com/RobertDober/earmark_parser/pull/165) which formatted the code according to the newly created `.formatter.exs` **finally**
11+
as Brad convinced me to do this. I do not particulary like all the formatter does but it is good for fututre collaboration.
12+
13+
**N.B. Collaborators** `mix format --check-formatted` is part of the GHA CI checks, so please check it locally before making PRs, as duely noted in the
14+
docs.
15+
16+
Maybe a commit hook would be better, I am open to suggestions.
17+
18+
- [PR #163](https://github.com/RobertDober/earmark_parser/pull/163) fixing [elixir-lang/ex_doc#1452](https://github.com/elixir-lang/ex_doc/issues/1452) which
19+
was flying under my Radar waaaay to long.
20+
Kudos to [Brad Hanks](https://github.com/bradhanks)
21+
822
## [EarmarkParser](https://hex.pm/packages/earmark_parser) 1.4.43 2025-01-24
923

1024
This one is needed for OTP-28, many thanx to [José Valim](https://github.com/josevalim)

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule EarmarkParser.MixProject do
22
use Mix.Project
33

4-
@version "1.4.43"
4+
@version "1.4.44"
55
@url "https://github.com/RobertDober/earmark_parser"
66

77
@deps [
@@ -10,7 +10,7 @@ defmodule EarmarkParser.MixProject do
1010
{:dialyxir, "~> 1.4.5", only: [:dev], runtime: false},
1111
{:earmark_ast_dsl, "~> 0.3.7", only: [:test]},
1212
{:excoveralls, "~> 0.18.3", only: [:test]},
13-
# {:extractly, "~> 0.5.3", only: [:dev]},
13+
{:extractly, "~> 0.5.3", only: [:dev]},
1414
{:floki, "~> 0.36", only: [:dev, :test]}
1515
]
1616

0 commit comments

Comments
 (0)