diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-22 12:44:20 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-22 12:44:20 +0300 |
commit | 51760c84b91f0af75200d2505f6b52ec1a4af484 (patch) | |
tree | 738ff5876fd4c63d2613540e08003354b0055443 /mix.exs | |
parent | 177faf15c24453fc67bb5bedc6189055e686e2a3 (diff) | |
parent | 8dbcff2fed0bf6fb20b70388974fcbe9d3a0aeee (diff) | |
download | pleroma-51760c84b91f0af75200d2505f6b52ec1a4af484.tar.gz pleroma-51760c84b91f0af75200d2505f6b52ec1a4af484.zip |
Merge branch 'develop' into release-docs
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -117,7 +117,7 @@ defmodule Pleroma.Mixfile do {:ex_aws, "~> 2.0"}, {:ex_aws_s3, "~> 2.0"}, {:earmark, "~> 1.3"}, - {:bbcode, "~> 0.1"}, + {:bbcode, "~> 0.1.1"}, {:ex_machina, "~> 2.3", only: :test}, {:credo, "~> 0.9.3", only: [:dev, :test]}, {:mock, "~> 0.3.3", only: :test}, @@ -222,7 +222,7 @@ defmodule Pleroma.Mixfile do true <- branch_name != "master" do branch_name = String.trim(branch_name) - |> String.replace(~r/\W+/, "-") + |> String.replace(~r/[^0-9a-z\-\.]+/i, "-") "-" <> branch_name end |