Bump v1.13.2 to v1.13.3 in the TOMLs and snaps

This commit is contained in:
Kerollmops 2025-03-04 14:46:47 +01:00
parent 25f0536f5a
commit ba30747de3
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
2 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ async fn version_requires_downgrade() {
std::fs::write(db_path.join("VERSION"), format!("{major}.{minor}.{patch}")).unwrap();
let options = Opt { experimental_dumpless_upgrade: true, ..default_settings };
let err = Server::new_with_options(options).await.map(|_| ()).unwrap_err();
snapshot!(err, @"Database version 1.13.3 is higher than the Meilisearch version 1.13.2. Downgrade is not supported");
snapshot!(err, @"Database version 1.13.4 is higher than the Meilisearch version 1.13.3. Downgrade is not supported");
}
#[actix_rt::test]