From 3d1ea3183c4de1690533cc01d1fa843bcea2e57e Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Thu, 19 Dec 2024 17:19:22 -0800
Subject: Bump version
---
mix.exs | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
(limited to 'mix.exs')
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
--
cgit v1.2.3