diff --git a/lib/util/constants.ex b/lib/util/constants.ex index 6c30800..81f027d 100644 --- a/lib/util/constants.ex +++ b/lib/util/constants.ex @@ -2,7 +2,7 @@ defmodule Testcontainers.Constants do @moduledoc false def library_name, do: :testcontainers - def library_version, do: "1.11.0" + def library_version, do: "1.11.1" def container_label, do: "org.testcontainers" def container_lang_label, do: "org.testcontainers.lang" def container_reuse_hash_label, do: "org.testcontainers.reuse-hash" diff --git a/mix.exs b/mix.exs index 571da98..a521596 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule TestcontainersElixir.MixProject do use Mix.Project @app :testcontainers - @version "1.11.0" + @version "1.11.1" @source_url "https://github.com/testcontainers/testcontainers-elixir" def project do @@ -19,8 +19,9 @@ defmodule TestcontainersElixir.MixProject do deps: deps(), dialyzer: [plt_add_apps: [:mix]], package: [ + files: ~w(lib docker_engine_api .formatter.exs mix.exs README* LICENSE*), links: %{"GitHub" => @source_url}, - licenses: ["MIT"] + licenses: ["MIT License"] ], test_coverage: [ summary: [threshold: 50],