Skip to content

Commit

Permalink
fixed argument type bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdaq committed Oct 22, 2022
1 parent 9676201 commit bc718ab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "steam-webapi-rust-sdk"
version = "0.0.6"
version = "0.0.7"
homepage = "https://github.com/bohdaq/steam-webapi-rust-sdk"
repository = "https://github.com/bohdaq/steam-webapi-rust-sdk"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions src/idota2match_570/get_match_history/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn get(account_id: Option<i64>,
game_mode: Option<u8>,
skill: Option<u8>,
min_players: Option<u32>,
start_at_match_id: Option<u64>,
start_at_match_id: Option<i64>,
matches_requested: Option<u32>,
tournament_games_only: Option<bool>)
-> Result<ResponseMatchHistory, String> {
Expand Down Expand Up @@ -84,7 +84,7 @@ pub fn get_api_url(account_id: Option<i64>,
game_mode: Option<u8>,
skill: Option<u8>,
min_players: Option<u32>,
start_at_match_id: Option<u64>,
start_at_match_id: Option<i64>,
matches_requested: Option<u32>,
tournament_games_only: Option<bool>) -> String {

Expand Down
2 changes: 1 addition & 1 deletion src/idota2match_570/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn get_dota2_match_history(account_id: Option<i64>,
game_mode: Option<u8>,
skill: Option<u8>,
min_players: Option<u32>,
start_at_match_id: Option<u64>,
start_at_match_id: Option<i64>,
matches_requested: Option<u32>,
tournament_games_only: Option<bool>)
-> Result<ResponseMatchHistory, String>{
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pub fn get_dota2_match_history(account_id: Option<i64>,
game_mode: Option<u8>,
skill: Option<u8>,
min_players: Option<u32>,
start_at_match_id: Option<u64>,
start_at_match_id: Option<i64>,
matches_requested: Option<u32>,
tournament_games_only: Option<bool>)
-> Result<ResponseMatchHistory, String> {
Expand Down

0 comments on commit bc718ab

Please sign in to comment.