Skip to content

v0.7.5

Compare
Choose a tag to compare
@GoranBrkuljan GoranBrkuljan released this 20 Aug 14:56
· 13 commits to main since this release

What's new:

  • feat: Expose the charybdis-migrate package for programmatic control over migrations by @Michal-python in #47

    use migrate::MigrationBuilder;
    
    let migration = MigrationBuilder::new()
      .keyspace("test")
      .drop_and_replace(true)
      .build(&session)
      .await;
    
    migration.run().await;
  • refactor: code formatting cleanup #47

  • update: DRY-up migration builder #48

New Contributors

Full Changelog: v0.7.3...v0.7.5