From 4c70934998e1edbc7b2de7a7679d9995dc27fa79 Mon Sep 17 00:00:00 2001 From: Joel Kociolek Date: Tue, 16 Sep 2025 14:07:06 +0300 Subject: [PATCH] remove warnings when using Elixir 1.18 --- lib/base62.ex | 2 +- mix.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base62.ex b/lib/base62.ex index cba6560..38c1210 100644 --- a/lib/base62.ex +++ b/lib/base62.ex @@ -1,4 +1,4 @@ defmodule Shortcode.Base62 do @moduledoc false - use CustomBase, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' + use CustomBase, ~c"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" end diff --git a/mix.exs b/mix.exs index 7b43517..f33e23f 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Shortcode.MixProject do use Mix.Project @source_url "https://github.com/elielhaouzi/shortcode" - @version "0.7.0" + @version "0.7.1" def project do [