Skip to content

Commit

Permalink
Bump version to 1.2.1 and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcianx committed Apr 7, 2024
1 parent 9b1eb58 commit c4c48ba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.2.1 - 2024-04-06
### Change
- Consolidated bounds on the trait to avoid triggering Clippy's
`multiple_bound_locations` lint.

## 1.2.0 - 2020-06-29
### Added
- `no_std` 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 = "downcast-rs"
version = "1.2.0"
version = "1.2.1"
authors = ["Ashish Myles <[email protected]>", "Runji Wang <[email protected]>"]
repository = "https://github.com/marcianx/downcast-rs"
description = """
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# downcast-rs

[![Build status](https://img.shields.io/github/actions/workflow/status/marcianx/downcast-rs/main.yml?branch=master)](https://github.com/marcianx/downcast-rs/actions)
[![Latest version](https://img.shields.io/crates/v/downcast-rs.svg)](https://crates.io/crates/downcast-rs)
[![Documentation](https://docs.rs/downcast-rs/badge.svg)](https://docs.rs/downcast-rs)
Expand All @@ -17,7 +19,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
downcast-rs = "1.2.0"
downcast-rs = "1.2.1"
```

This crate is `no_std` compatible. To use it without `std`:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
//!
//! ```toml
//! [dependencies]
//! downcast-rs = "1.2.0"
//! downcast-rs = "1.2.1"
//! ```
//!
//! This crate is `no_std` compatible. To use it without `std`:
Expand Down

0 comments on commit c4c48ba

Please sign in to comment.