update elixir/erlang version
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
shibao 2023-10-20 18:23:25 -04:00
parent bf9fd4880f
commit bc29ca6c20
5 changed files with 9 additions and 6 deletions

View File

@ -17,7 +17,7 @@ steps:
- .mix - .mix
- name: test - name: test
image: elixir:1.15.4-alpine image: elixir:1.15.6-alpine
environment: environment:
TEST_DATABASE_URL: ecto://postgres:postgres@database/memex_test TEST_DATABASE_URL: ecto://postgres:postgres@database/memex_test
HOST: testing.example.tld HOST: testing.example.tld

View File

@ -1,3 +1,3 @@
elixir 1.15.4-otp-26 elixir 1.15.6-otp-26
erlang 26.0.2 erlang 26.1.2
nodejs 20.6.0 nodejs 20.6.0

View File

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

View File

@ -1,3 +1,6 @@
# v0.1.13
- Update dependencies
# v0.1.12 # v0.1.12
- Code quality fixes - Code quality fixes
- Fix error/404 pages not rendering properly - Fix error/404 pages not rendering properly

View File

@ -4,8 +4,8 @@ defmodule Memex.MixProject do
def project do def project do
[ [
app: :memex, app: :memex,
version: "0.1.12", version: "0.1.13",
elixir: "1.15.4", elixir: "1.15.6",
elixirc_paths: elixirc_paths(Mix.env()), elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,
aliases: aliases(), aliases: aliases(),