Skip to content

Commit

Permalink
chore: set version to v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikFerrari committed Jul 11, 2023
1 parent 9cb8780 commit 90de52f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
defmodule ArkePostgres.MixProject do
use Mix.Project

@version "0.2.4"
@scm_url "https://github.com/arkemishub/arke-postgres"
@site_url "https://arkehub.com"

def project do
[
app: :arke_postgres,
version: "0.2.3",
version: @version,
build_path: "./_build",
config_path: "./config/config.exs",
deps_path: "./deps",
lockfile: "./mix.lock",
elixir: "~> 1.13",
source_url: @scm_url,
homepage_url: @site_url,
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -49,8 +55,8 @@ defmodule ArkePostgres.MixProject do
# These are the default files included in the package
licenses: ["Apache-2.0"],
links: %{
"Website" => "https://arkehub.com",
"Github" => "https://github.com/arkemishub/arke-postgres"
"Website" => @site_url,
"Github" => @scm_url
}
]
end
Expand Down

0 comments on commit 90de52f

Please sign in to comment.