Bump API version

This commit is contained in:
Antoine Gersant 2022-11-17 22:31:19 -08:00
parent d1cb328523
commit 9f0bc06dac
2 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
### Server
- API version is now 6.1
- API version is now 7.0
- ⚠️ Removed support for authentication via cookies (deprecated in Polaris 0.13.0)
- ⚠️ Removed support for authentication via the `Basic` scheme when using the HTTP `Authorization` header (deprecated in Polaris 0.13.0)
- Fixed a bug where all music sources would be deleted when trying to add sources with duplicate names

View file

@ -3,8 +3,8 @@ use serde::{Deserialize, Serialize};
use crate::app::{config, ddns, settings, thumbnail, user, vfs};
use std::convert::From;
pub const API_MAJOR_VERSION: i32 = 6;
pub const API_MINOR_VERSION: i32 = 1;
pub const API_MAJOR_VERSION: i32 = 7;
pub const API_MINOR_VERSION: i32 = 0;
#[derive(PartialEq, Eq, Debug, Serialize, Deserialize)]
pub struct Version {