Version Bump to 0.2.0 Alpha

This commit is contained in:
Jordon Brooks 2023-06-26 21:53:40 +01:00
parent 2b61120c27
commit 31413b3c46
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -616,7 +616,7 @@ dependencies = [
[[package]] [[package]]
name = "harmony_link_server" name = "harmony_link_server"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"actix-web", "actix-web",
"battery", "battery",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "harmony_link_server" name = "harmony_link_server"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
authors = ["Jordon jordon@jordongamedev.co.uk"] authors = ["Jordon jordon@jordongamedev.co.uk"]
homepage = "https://jordongamedev.co.uk" homepage = "https://jordongamedev.co.uk"

View file

@ -27,7 +27,7 @@ impl Version {
version_major: env!("CARGO_PKG_VERSION_MAJOR").parse().unwrap(), version_major: env!("CARGO_PKG_VERSION_MAJOR").parse().unwrap(),
version_minor: env!("CARGO_PKG_VERSION_MINOR").parse().unwrap(), version_minor: env!("CARGO_PKG_VERSION_MINOR").parse().unwrap(),
version_patch: env!("CARGO_PKG_VERSION_PATCH").parse().unwrap(), version_patch: env!("CARGO_PKG_VERSION_PATCH").parse().unwrap(),
version_pre: "".to_string(), version_pre: "Alpha".to_string(),
supported_api_versions: vec!["v1".to_string()] supported_api_versions: vec!["v1".to_string()]
} }
} }