Skip to content

Commit

Permalink
Bump lib versions
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRublev committed May 10, 2024
1 parent a7a876f commit 4446415
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Domo.MixProject do
use Mix.Project

@version "1.5.15"
@version "1.5.16"
@repo_url "https://github.com/IvanRublev/Domo"

def project do
Expand Down Expand Up @@ -62,20 +62,28 @@ defmodule Domo.MixProject do
[
# Development and test dependencies
{:ex_check, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.3", only: :dev, runtime: false},
{:credo, "~> 1.6", only: :dev, runtime: false},
{:excoveralls, "~> 0.13.4", only: :test, runtime: false},
{:mix_test_watch, "~> 1.0", only: :test, runtime: false},
{:placebo, "~> 1.2", only: :test},
{:ecto, ">= 0.0.0", optional: true},
{:decimal, ">= 0.0.0", optional: true},
{:nimble_parsec, "1.1.0"},
{:nimble_parsec, if(match?([1, 11, _], ex_version()), do: "1.1.0", else: "~> 1.1")},

# Documentation dependencies
{:ex_doc, "0.26.0", only: :docs, runtime: false}
]
end

defp ex_version do
:elixir
|> Application.spec(:vsn)
|> to_string()
|> String.replace(~r/-.*$/, "")
|> String.split(".")
|> Enum.map(&String.to_integer/1)
end

defp aliases do
[
benchmark: "cmd --cd ./benchmark_ecto_domo mix do deps.unlock --all + deps.get + benchmark",
Expand Down

0 comments on commit 4446415

Please sign in to comment.