Bump version to 0.1.0

This commit is contained in:
CosminPerRam 2023-01-17 02:02:49 +02:00
parent 6ec2b8952c
commit dfe544c6aa
4 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
Who knows what the future holds... Who knows what the future holds...
# X - DD/MM/YYYY # 0.1.0 - 17/01/2023
### Changes: ### Changes:
Games: Games:
- [Risk of Rain 2](https://store.steampowered.com/app/632360/Risk_of_Rain_2/) support. - [Risk of Rain 2](https://store.steampowered.com/app/632360/Risk_of_Rain_2/) support.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "gamedig" name = "gamedig"
version = "0.0.7" version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["CosminPerRam [cosmin.p@live.com]", "node-GameDig [https://github.com/gamedig/node-gamedig]"] authors = ["CosminPerRam [cosmin.p@live.com]", "node-GameDig [https://github.com/gamedig/node-gamedig]"]
license = "MIT" license = "MIT"
@ -16,4 +16,4 @@ rust-version = "1.56.1"
bzip2-rs = "0.1.2" # for compression bzip2-rs = "0.1.2" # for compression
crc32fast = "1.3.2" crc32fast = "1.3.2"
serde_json = "1.0.87" # json to structs serde_json = "1.0.91" # json to structs

View file

@ -16,7 +16,7 @@ use gamedig::games::tf2;
fn main() { fn main() {
let response = tf2::query("127.0.0.1", None); // None is the default port (which is 27015), could also be Some(27015) let response = tf2::query("127.0.0.1", None); // None is the default port (which is 27015), could also be Some(27015)
match response { match response {
Err(error) => println!("Couldn't query, error: {error}"), Err(error) => println!("Couldn't query, error: {}", error),
Ok(r) => println!("{:#?}", r) Ok(r) => println!("{:#?}", r)
} }
} }

View file

@ -9,7 +9,7 @@
//! fn main() { //! fn main() {
//! let response = tf2::query("91.216.250.10", None); //or Some(27015), None is the default protocol port //! let response = tf2::query("91.216.250.10", None); //or Some(27015), None is the default protocol port
//! match response { //! match response {
//! Err(error) => println!("Couldn't query, error: {error}"), //! Err(error) => println!("Couldn't query, error: {}", error),
//! Ok(r) => println!("{:?}", r) //! Ok(r) => println!("{:?}", r)
//! } //! }
//! } //! }