Skip to content

Commit 9395028

Browse files
committed
Prepare Relase 1.4.15
1 parent 15bac3c commit 9395028

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

RELEASE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# 1.4.15 2021-??-??
1+
# 1.4.15 2021-04-18
2+
3+
- Pushed `EarmarkParser` dependency to version >= 1.4.13 which fixes a bug wich could crash the parser
4+
[IAL on ListItem can crash Parser](https://github.com/RobertDober/earmark_parser/issues/36)
25

36
- [404-assure-a-proplist-is-in-use-for-retrieval-of-filename](https://github.com/pragdave/earmark/pull/404)
47
Kudos to [Manuel Rubio](https://github.com/manuel-rubio)

mix.exs

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

4-
@version "1.4.14"
4+
@version "1.4.15"
55

66
@url "https://github.com/pragdave/earmark"
77

88

99
@deps [
10-
{:earmark_parser, ">= 1.4.12"},
10+
{:earmark_parser, ">= 1.4.13"},
1111
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
1212
{:benchfella, "~> 0.3.0", only: [:dev]},
1313
{:earmark_ast_dsl, "~> 0.2.5", only: [:test]},

mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"certifi": {:hex, :certifi, "2.5.3", "70bdd7e7188c804f3a30ee0e7c99655bc35d8ac41c23e12325f36ab449b70651", [:rebar3], [{:parse_trans, "~>3.3", [hex: :parse_trans, repo: "hexpm", optional: false]}], "hexpm", "ed516acb3929b101208a9d700062d520f3953da3b6b918d866106ffa980e1c10"},
44
"dialyxir": {:hex, :dialyxir, "1.1.0", "c5aab0d6e71e5522e77beff7ba9e08f8e02bad90dfbeffae60eaf0cb47e29488", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "07ea8e49c45f15264ebe6d5b93799d4dd56a44036cf42d0ad9c960bc266c0b9a"},
55
"earmark_ast_dsl": {:hex, :earmark_ast_dsl, "0.2.5", "e44146944eebe83b33e3597da27fb9b37af7287c55e8cc3bd014cfcd5e57c355", [:mix], [], "hexpm", "da14595fcc283fa8d3ada8adb0b934cab791917b82cc5149cc4c404545cdc2b1"},
6-
"earmark_parser": {:hex, :earmark_parser, "1.4.12", "b245e875ec0a311a342320da0551da407d9d2b65d98f7a9597ae078615af3449", [:mix], [], "hexpm", "711e2cc4d64abb7d566d43f54b78f7dc129308a63bc103fbd88550d2174b3160"},
6+
"earmark_parser": {:hex, :earmark_parser, "1.4.13", "0c98163e7d04a15feb62000e1a891489feb29f3d10cb57d4f845c405852bbef8", [:mix], [], "hexpm", "d602c26af3a0af43d2f2645613f65841657ad6efc9f0e361c3b6c06b578214ba"},
77
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
88
"excoveralls": {:hex, :excoveralls, "0.11.2", "0c6f2c8db7683b0caa9d490fb8125709c54580b4255ffa7ad35f3264b075a643", [:mix], [{:hackney, "~> 1.0", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "e11a4490976aabeed3eb9dc70ec94a4f2d11fed5c9d4b5dc5d89bfa0a215abb5"},
99
"extractly": {:hex, :extractly, "0.2.0", "23ecbfda9b4e23df120250a86429e853d7f9da30e7b00d5a090f92096b36b986", [:mix], [], "hexpm", "4c4acc7eb335f3e6f54a958d8c92e7ffa0d2d35d9673d5a5be4df6871636d3b6"},

test/acceptance/dependency_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ defmodule Acceptance.DependencyTest do
22
use ExUnit.Case
33

44
test "correct parser version" do
5-
assert EarmarkParser.version == "1.4.12"
5+
assert EarmarkParser.version == "1.4.13"
66
end
77
end

0 commit comments

Comments
 (0)