From 0ac8745b72dc0dbb5cd37abc885f23ac8078a2ab Mon Sep 17 00:00:00 2001 From: Robert Dober Date: Sun, 17 Sep 2023 16:59:34 +0200 Subject: [PATCH] removed dependency --- RELEASE.md | 13 +++++++++++++ mix.exs | 4 +--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index dce9dd5b..92074630 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,16 @@ +## [Earmark](https://hex.pm/packages/earmark) 1.4.41 2023-??-?? + +Isolate from `EarmarkParser` in order to prevent conflicts with indirect dependencies +on `EarmarkParser` via `ExDoc`. +This shall mark the end of my role as maintainer of Earmark. + +## [Earmark](https://hex.pm/packages/earmark) 1.4.40 2023-09-12 + +- Exposing all relevant `Earmark.Options` to the command line + +- Updated `EarmarkParser` version to 1.4.35 + + ## [Earmark](https://hex.pm/packages/earmark) 1.4.38 2023-04-29 - [PR-460 Avoid trailing slash on void elements](https://github.com/pragdave/earmark/pull/460) diff --git a/mix.exs b/mix.exs index 73ceb1be..f515f25d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,14 +1,12 @@ defmodule Earmark.Mixfile do use Mix.Project - @version "1.4.40" + @version "1.4.41" @url "https://github.com/pragdave/earmark" @deps [ - {:earmark_parser, "~> 1.4.35" }, - # {:earmark_parser, "~> 1.4.35", path: "../earmark_parser"}, {:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false}, {:benchfella, "~> 0.3.0", only: [:dev]}, {:earmark_ast_dsl, "~> 0.3.6", only: [:dev, :test]},