Summary
This release adds several improvements and bug-fixes (see "What's Changed since v1.2.0").
Update Instructions
This release contains a change that requires special care when updating ("Allow multiple other names in AstroSource", PR 123). The field `AstroSource.other_name` was renamed to `AstroSource.other_names`. For this to be correctly taken into account during the database migration step of the update, it must be manually indicated by editing the migrations file. First generate the migrations as usual (`python manage.py makemigrations`). Then, go to the migrations file, remove the lines deleting the field and adding it again, and leave something like:
python
operations = [
migrations.RenameField(
model_name='astrosource',
old_name='other_name',
new_name='other_names',
),
...
That is, make sure it is renaming the field instead of deleting it and creating a new one.