Skip to content

v1.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Sep 16:36
· 14 commits to refs/heads/main since this release
c060037

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:

    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.

What's Changed since v1.2.0

Contributors

@joteros, @juanep97 and @morcuended