We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f33b0fe commit c5d04cdCopy full SHA for c5d04cd
lib/rustler_mjml/native.ex
@@ -1,5 +1,5 @@
1
defmodule RustlerMjml.Native do
2
- version = "0.0.2"
+ version = Mix.Project.config()[:version]
3
4
use RustlerPrecompiled,
5
otp_app: :rustler_mjml,
mix.exs
@@ -1,10 +1,12 @@
defmodule RustlerMjml.MixProject do
use Mix.Project
+ @version "0.0.3"
+
6
def project do
7
[
8
app: :rustler_mjml,
- version: "0.1.0",
9
+ version: @version,
10
elixir: "~> 1.13",
11
start_permanent: Mix.env() == :prod,
12
deps: deps()
0 commit comments