Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/base62.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule Shortcode.Base62 do
@moduledoc false
use CustomBase, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
use CustomBase, ~c"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
end
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down
Loading