Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Mititiuc <webdevcat@proton.me>2024-12-19 17:19:22 -0800
committerCatalin Mititiuc <webdevcat@proton.me>2024-12-19 17:49:39 -0800
commit3d1ea3183c4de1690533cc01d1fa843bcea2e57e (patch)
treeb8617bcac33dda0597924253b27afbca76cf05d2 /mix.exs
parentccb050102a3d5584fd7f7ad504583e8f43f5458d (diff)
Bump versionv0.2.0
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs15
1 files changed, 12 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index e124a56..7a0bb94 100644
--- a/mix.exs
+++ b/mix.exs
@@ -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