Skip to content

v1.3.0

Compare
Choose a tag to compare
@emilsjolander emilsjolander released this 22 Apr 20:47
· 8 commits to master since this release
  • Major migrations revamp. Migrations are added similar to before but all the sql is written by hand. This was done to fix some big bugs with the old system. More info can be found in issue #67.
  • A lot of annotations have been removed as they were only used for migrations. You will want to change @PrimaryKey -> @Key and @AutoIncrementPrimaryKey -> @AutoIncrement + @Key. The rest of the migrations except @Column and @DynamicColumn have been removed. Specify migration constraints in the migrations.
  • initLoader has been changed to restartLoader. Lost of subtle bugs fixed by this change