Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tuguzT committed Jun 24, 2023
1 parent 3f4a440 commit d149f6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "ref_kind"
version = "0.4.2"
version = "0.5.0"
description = "Different reference kinds"
authors = ["tuguzT <timurka.tugushev@gmail.com>"]
repository = "https://github.com/toucan-rust/ref_kind"
repository = "https://github.com/toucan-games/ref_kind"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["ref", "safe", "mutability", "no-std"]
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ let one_again = many.try_move_ref(1);
assert_eq!(one_again, Err(MoveError::BorrowedMutably));
```

This crate used to be the part of `toucan_ecs` crate (which is in early development stage),
but now was moved into the separate crate!

## `#![no_std]` support

This crate is a `no_std` crate. It depends only on the `core` crate.
Expand All @@ -63,7 +60,7 @@ you should disable default features of this crate in Cargo.toml:

```toml
[dependencies]
ref_kind = { version = "0.4.2", default-features = false }
ref_kind = { version = "0.5.0", default-features = false }
```

## `#![forbid(unsafe_code)]`
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
//!
//! ```toml
//! [dependencies]
//! ref_kind = { version = "0.4.2", default-features = false }
//! ref_kind = { version = "0.5.0", default-features = false }
//! ```
//!
//! ## `#![forbid(unsafe_code)]`
Expand Down

0 comments on commit d149f6c

Please sign in to comment.