Current section
Files
Jump to
Current section
Files
appup.ex
# See the appup cookbook for instructions:
# https://www.erlang.org/doc/design_principles/appup_cookbook.html
{
'0.9.0-alpha2',
[
# Upgrade instructions
{'0.9.0-alpha1',
[
# Top shard supervisor was not registered, so could not restart shard
# supervisor to load new gateway logic
{:restart_application, :nostrum}
]},
{'0.8.0',
[
{:restart_application, :nostrum}
]}
],
[
# Downgrade instructions
{'0.9.0-alpha1',
[
{:restart_application, :nostrum}
]},
{'0.8.0',
[
{:restart_application, :nostrum}
]}
]
}