Skip to content

Commit 8db20ee

Browse files
authoredDec 25, 2023
chore(main): release 0.2.0 (#26)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 519348b commit 8db20ee

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
 

‎CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/martinohmann/vecmap-rs/compare/v0.1.15...v0.2.0) (2023-12-25)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **map:** The type of the function parameter of `VecMap::retain` was changed from `FnMut(&K, &V) -> bool` to `FnMut(&K, &mut V) -> bool` to make it consistent with `retain` implementations of other common `std` collections.
9+
10+
### Features
11+
12+
* **set:** add `VecSet::from_vec_unchecked` ([#27](https://github.com/martinohmann/vecmap-rs/issues/27)) ([519348b](https://github.com/martinohmann/vecmap-rs/commit/519348bfba4a0ef2c2ddba144cbb9c0adb87a851))
13+
14+
15+
### Bug Fixes
16+
17+
* **map:** update API of VecMap::retain to be consistent with std ([#25](https://github.com/martinohmann/vecmap-rs/issues/25)) ([0daf65d](https://github.com/martinohmann/vecmap-rs/commit/0daf65d7b04ad7fe8717bc03bd7b14c2f38d547b))
18+
319
## [0.1.15](https://github.com/martinohmann/vecmap-rs/compare/v0.1.14...v0.1.15) (2023-12-23)
420

521

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vecmap-rs"
3-
version = "0.1.15"
3+
version = "0.2.0"
44
authors = ["Martin Ohmann <martinohmann@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "A vector-based map and set implementation"

0 commit comments

Comments
 (0)