diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5e8ece1..1fd0e9b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -32,6 +32,6 @@ jobs: context: . platforms: 'linux/amd64,linux/arm64' push: ${{ github.event_name != 'pull_request' }} - tags: 'brunojppb/turbo-racer:latest,brunojppb/turbo-racer:1.0.4' + tags: 'brunojppb/turbo-racer:latest,brunojppb/turbo-racer:1.0.5' cache-from: type=registry,ref=brunojppb/turbo-racer:latest cache-to: type=inline diff --git a/lib/turbo_web/controllers/team_controller.ex b/lib/turbo_web/controllers/team_controller.ex index 0e32809..cde3072 100644 --- a/lib/turbo_web/controllers/team_controller.ex +++ b/lib/turbo_web/controllers/team_controller.ex @@ -29,7 +29,7 @@ defmodule TurboWeb.TeamController do {flash_level, message} = case Teams.delete(team_id) do {:ok, _} -> - {:info, "Team #{team_id} and all its associated tokens deleted."} + {:info, "Team #{team_id} and all its associated artifacts and tokens deleted."} {:error, _} -> {:error, "Could not delete team with ID #{team_id}"} diff --git a/mix.exs b/mix.exs index f4b2d55..b944eb6 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Turbo.MixProject do [ app: :turbo, name: "Turbo Cache", - version: "1.0.2", + version: "1.0.5", elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), compilers: Mix.compilers(),