index : pandoc | |
Hex package with a file-watcher and Mix task for using Pandoc to convert Markdown files to HTML. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-12-19 17:19:22 -0800 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-12-19 17:49:39 -0800 |
commit | 3d1ea3183c4de1690533cc01d1fa843bcea2e57e (patch) | |
tree | b8617bcac33dda0597924253b27afbca76cf05d2 /mix.exs | |
parent | ccb050102a3d5584fd7f7ad504583e8f43f5458d (diff) |
Bump versionv0.2.0
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -1,14 +1,23 @@ defmodule Pandoc.MixProject do use Mix.Project + @version "0.2.0" + @source_url "https://webdevcat.me/git/pandoc/" + def project do [ app: :pandoc, - version: "0.1.0", + version: @version, elixir: "~> 1.14", deps: deps(), - description: "Pandoc", - package: [links: [], licenses: ["MIT"]] + description: "File-watcher and Mix task to convert Markdown files to HTML", + package: [ + links: %{ + "pandoc" => "https://pandoc.org/" + }, + licenses: ["MIT"] + ], + source_url: @source_url ] end |