Skip to content

Releases: juanep97/iop4

v1.3.0

24 Sep 16:36
c060037
Compare
Choose a tag to compare

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

v1.2.0

10 Jun 12:32
75a1db1
Compare
Choose a tag to compare

Summary

This release includes several improvements to documentation, handling of configuration files and others.

What's Changed since v1.1.2

Contributors

@juanep97

v1.1.2

15 Apr 13:08
e54a414
Compare
Choose a tag to compare

Summary

Fixes #96.

What's Changed since v1.1.1

  • Fix release title in docs deployment to GitHub pages (#98) @juanep97

Contributors

@juanep97

v1.1.1

15 Apr 09:26
c62b850
Compare
Choose a tag to compare

Summary

Bug-fixing release, partially fixes (#96).

What's Changed since v1.1.0

Contributors

@juanep97

v1.1.0

12 Apr 16:02
980546f
Compare
Choose a tag to compare

Summary

This version enables CAFOS simple photometry in several bands (it was implemented, but not the case was not handled). It implements several other improvement and bug fixes.

What's Changed since v1.0.0

Known Bugs:

  • Documentation is not correctly deployed to GitHub Pages (#95). Local docs are working.

Contributors

@juanep97 and @morcuended

v1.0.0

20 Mar 17:55
6a003f0
Compare
Choose a tag to compare

Summary

  • Several improvements to the documentation, which now includes example notebooks.
  • Implement host galaxy correction.
  • Add night summary script.
  • Several improvements and bug fixes.

What's Changed since v0.1.0

Contributors

@juanep97 and @morcuended

v0.1.0

29 Nov 16:21
81e864c
Compare
Choose a tag to compare

v0.1.0 - 2023-11-29

First version.