mirror of
https://github.com/agersant/polaris
synced 2024-11-10 02:04:13 +00:00
Bump API version
This commit is contained in:
parent
d1cb328523
commit
9f0bc06dac
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue