diff --git a/CHANGELOG.md b/CHANGELOG.md index 471e03e..ee49e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This is a broad overview of the changes that have been made over the lifespan of this library. +## v0.25.0 - 2023-06-04 + +- Add Rating, RatingSystem, RatingPeriodSystem, TeamRatingSystem, and MultiTeamRatingSystem traits + ## v0.24.0 - 2023-01-01 - Renamed `match_quality_teams` to `match_quality_two_teams` for consistency diff --git a/Cargo.toml b/Cargo.toml index db136bf..1b44fbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skillratings" -version = "0.24.0" +version = "0.25.0" edition = "2021" description = "Calculate a player's skill rating using algorithms like Elo, Glicko, Glicko-2, TrueSkill and many more." readme = "README.md" diff --git a/README.md b/README.md index c00ec69..f2833d0 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Alternatively, you can add the following to your `Cargo.toml` file manually: ```toml [dependencies] -skillratings = "0.24" +skillratings = "0.25" ``` ### Serde support @@ -56,7 +56,7 @@ By editing `Cargo.toml` manually: ```toml [dependencies] -skillratings = {version = "0.24", features = ["serde"]} +skillratings = {version = "0.25", features = ["serde"]} ``` ## Usage and Examples diff --git a/src/lib.rs b/src/lib.rs index c35387b..9736ce7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,7 @@ //! //! ```toml //! [dependencies] -//! skillratings = "0.24" +//! skillratings = "0.25" //! ``` //! //! ## Serde support @@ -64,7 +64,7 @@ //! //! ```toml //! [dependencies] -//! skillratings = {version = "0.24", features = ["serde"]} +//! skillratings = {version = "0.25", features = ["serde"]} //! ``` //! //! # Usage and Examples