From e372b899a20fe8cedd7e913b5cd63e3fa1b79db8 Mon Sep 17 00:00:00 2001 From: "Eric S. Londres" Date: Tue, 13 Sep 2022 00:52:37 -0400 Subject: [PATCH] update changelog and bump version number --- CHANGELOG.org | 13 +++++++++++++ mix.exs | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 30a33ef..fdbff41 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,3 +1,16 @@ +* 0.5.1 +This release has no new features or bugfixes. However, egalaxyd now +builds a static binary upon running mix release! This means you don't +have to manage a collection of erts files and inconsistently named +processes in your ps list. This is especially useful for BSD systems +who have daemon trees that heavily rely on the called binary being +named the same thing as the running process. + +Just call MIX_ENV=prod mix release and a new static binary will be +built. + +Of course the old methods of running in docker or using a plain old +OTP release will still work, and be supported for the forseeable future. * 0.5.0 ** Breaking changes and new features - You can now configure a directory for egalaxyd to serve files from. This still defaults to the current working directory if not overridden in the settings, but the default config file overrides the setting to "./public". diff --git a/mix.exs b/mix.exs index 37e1fc7..42bee6d 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Egalaxyd.MixProject do def project do [ app: :egalaxyd, - version: "0.5.1", + version: "0.5.2-alpha0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(),