update changelog and bump version number

This commit is contained in:
Eric S. Londres 2022-09-13 00:52:37 -04:00
parent 7a8d75ac7b
commit e372b899a2
Signed by: slondr
GPG Key ID: A2D25B4D5CB970E4
2 changed files with 14 additions and 1 deletions

View File

@ -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".

View File

@ -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(),