Skip to content

Commit 65176ab

Browse files
committed
Bump version to 0.25
1 parent 5432b61 commit 65176ab

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This is a broad overview of the changes that have been made over the lifespan of this library.
44

5+
## v0.25.0 - 2023-06-04
6+
7+
- Add Rating, RatingSystem, RatingPeriodSystem, TeamRatingSystem, and MultiTeamRatingSystem traits
8+
59
## v0.24.0 - 2023-01-01
610

711
- Renamed `match_quality_teams` to `match_quality_two_teams` for consistency

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skillratings"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
edition = "2021"
55
description = "Calculate a player's skill rating using algorithms like Elo, Glicko, Glicko-2, TrueSkill and many more."
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Alternatively, you can add the following to your `Cargo.toml` file manually:
3939

4040
```toml
4141
[dependencies]
42-
skillratings = "0.24"
42+
skillratings = "0.25"
4343
```
4444

4545
### Serde support
@@ -56,7 +56,7 @@ By editing `Cargo.toml` manually:
5656

5757
```toml
5858
[dependencies]
59-
skillratings = {version = "0.24", features = ["serde"]}
59+
skillratings = {version = "0.25", features = ["serde"]}
6060
```
6161

6262
## Usage and Examples

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//!
4848
//! ```toml
4949
//! [dependencies]
50-
//! skillratings = "0.24"
50+
//! skillratings = "0.25"
5151
//! ```
5252
//!
5353
//! ## Serde support
@@ -64,7 +64,7 @@
6464
//!
6565
//! ```toml
6666
//! [dependencies]
67-
//! skillratings = {version = "0.24", features = ["serde"]}
67+
//! skillratings = {version = "0.25", features = ["serde"]}
6868
//! ```
6969
//!
7070
//! # Usage and Examples

0 commit comments

Comments
 (0)