Skip to content

Commit

Permalink
Bump version to 0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
atomflunder committed Jun 4, 2023
1 parent 5432b61 commit 65176ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
//!
//! ```toml
//! [dependencies]
//! skillratings = "0.24"
//! skillratings = "0.25"
//! ```
//!
//! ## Serde support
Expand All @@ -64,7 +64,7 @@
//!
//! ```toml
//! [dependencies]
//! skillratings = {version = "0.24", features = ["serde"]}
//! skillratings = {version = "0.25", features = ["serde"]}
//! ```
//!
//! # Usage and Examples
Expand Down

0 comments on commit 65176ab

Please sign in to comment.