use elixir 1.13.4
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
shibao 2022-04-19 20:12:28 -04:00
parent 0917aff37b
commit 7c5b8333a3
5 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,7 @@ steps:
- assets/node_modules/
- name: test
image: bitwalker/alpine-elixir-phoenix:1.13
image: elixir:1.13.4-alpine
environment:
TEST_DATABASE_URL: ecto://postgres:postgres@database/cannery_test
HOST: testing.example.tld

View File

@ -1,3 +1,3 @@
elixir 1.13.2-otp-24
elixir 1.13.4-otp-24
erlang 24.2
nodejs 16.13.2

View File

@ -3,6 +3,7 @@
- Fix not being able to edit ammo group when fully used up
- Fix bug with average price per round calculation
- Show average price per round on ammo type table
- Use Elixir v1.13.4
# v0.4.1
- Fix button and tag text wrapping

View File

@ -1,4 +1,4 @@
FROM elixir:1.13-alpine AS build
FROM elixir:1.13.4-alpine AS build
# install build dependencies
RUN apk add --no-cache build-base npm git python3

View File

@ -5,7 +5,7 @@ defmodule Cannery.MixProject do
[
app: :cannery,
version: "0.5.0",
elixir: "~> 1.12",
elixir: "1.13.4",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,