Skip to content

Commit

Permalink
Bump version (properly)
Browse files Browse the repository at this point in the history
  • Loading branch information
atomflunder committed Oct 23, 2022
1 parent 31410ba commit d701aae
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## v0.18.1 - 2022-10-23
## v0.19.0 - 2022-10-23

- Add optional serde support

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.18.1"
version = "0.19.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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Alternatively, you can add the following to your `Cargo.toml` file manually:

```toml
[dependencies]
skillratings = "0.18"
skillratings = "0.19"
```

### Serde support
Expand Down
19 changes: 18 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,24 @@
//!
//! ```toml
//! [dependencies]
//! skillratings = "0.18"
//! skillratings = "0.19"
//! ```
//!
//! ## Serde support
//!
//! Serde support is gated behind the `serde` feature. You can enable it like so:
//!
//! Using `cargo add`:
//!
//! ```bash
//! cargo add skillratings --features serde
//! ```
//!
//! By editing `Cargo.toml` manually:
//!
//! ```toml
//! [dependencies]
//! skillratings = {version = "0.19", features = ["serde"]}
//! ```
//!
//! # Usage and Examples
Expand Down

0 comments on commit d701aae

Please sign in to comment.