Skip to content

Commit

Permalink
Update CHANGELOG.md. Push version to the 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JustForFun88 committed Apr 23, 2022
1 parent a85ed3a commit a95c485
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file.

## [v0.12.0] - 2022-04-23

### Added

- **`into_keys`** `DHashMap` method that creates a consuming iterator visiting all the keys in arbitrary order;
- **`into_values`** `DHashMap` method that creates a consuming iterator visiting all the values in arbitrary order;
- [`Extend`](https://doc.rust-lang.org/core/iter/trait.Extend.html) trait implementation for `DHashMap` was
expanded (add `Extend<&'a (K1, K2, V)>`);

### Changed

Updated documentations and examples of some methods and structures (`Iter`, `Keys`, `Values`, `Drain`, `IntoIter`
structures, `IntoIterator` trait implementations documentations, etc.)

### Removed

Nothing

### Fixed

Nothing

## [v0.11.0] - 2022-04-22

### Added
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 = "double-map"
version = "0.11.0"
version = "0.12.0"
authors = ["Alisher Galiev <alishergaliev88@gmail.com>"]
description = "A HashMap with double key to single data/value"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ interface. Look at [Change log](CHANGELOG.md) for more information.
- [x] `with_capacity_and_hasher`: Done since `v0.1.0`
- [x] `capacity`: Done since `v0.1.0`
- [x] `keys`: Done since `v0.6.0`
- [ ] `into_keys`: Under development
- [x] `into_keys`: Done since `v0.12.0`
- [x] `values`: Done since `v0.6.0`
- [x] `values_mut`: Done since `v0.6.0`
- [ ] `into_values`: Under development
- [x] `into_values`: Done since `v0.12.0`
- [x] `iter`: Done since `v0.4.0`
- [x] `iter_mut`: Done since `v0.5.0`
- [x] `len`: Done since `v0.1.0`
Expand Down Expand Up @@ -74,7 +74,7 @@ interface. Look at [Change log](CHANGELOG.md) for more information.
- [x] `Clone`: Done since `v0.1.0`
- [x] `Debug`: Done since `v0.9.0`
- [x] `Default`: Done since `v0.3.0`
- [x] `Extend`: Done since `v0.2.0`
- [x] `Extend`: Done since `v0.2.0` (some update in version `v0.12.0`)
- [ ] `From`: Under development
- [x] `FromIterator`: Done since `v0.2.0`
- [ ] `Index`: Under development
Expand Down

0 comments on commit a95c485

Please sign in to comment.