Fix java version not being optional

This commit is contained in:
Jai A
2021-12-19 19:56:56 -07:00
parent 80173634a0
commit 1d86aac338
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "daedalus"
version = "0.1.11"
version = "0.1.12"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2018"
license = "MIT"

View File

@@ -323,7 +323,7 @@ pub struct VersionInfo {
pub id: String,
/// The Java version this version supports
pub java_version: JavaVersion,
pub java_version: Option<JavaVersion>,
/// Libraries that the version depends on
pub libraries: Vec<Library>,
/// The classpath to the main class to launch the game

View File

@@ -1,6 +1,6 @@
[package]
name = "daedalus_client"
version = "0.1.11"
version = "0.1.12"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2018"