Skip to content

Commit 0256728

Browse files
committed
v0.9.0
1 parent c15e248 commit 0256728

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.9.0
44
### Added
5-
- `pop`
6-
- `is_empty`
7-
- `AnyVec::clone_empty_in`
8-
- `Stack` Mem/Allocator.
95
- `MemBuilder` + `Mem` = Allocator.
6+
- `Stack` Mem/Allocator.
7+
- `AnyVec::clone_empty_in`
108
- `reserve`
119
- `reserve_exact`
1210
- `shrink_to_fit`
1311
- `shrink_to`
12+
- `pop`
13+
- `is_empty`
1414

1515
## 0.8.0
1616
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "any_vec"
33
authors = ["Andrey Diduh <[email protected]>"]
44
license = "MIT OR Apache-2.0"
5-
version = "0.8.0"
5+
version = "0.9.0"
66
edition = "2021"
77
rust-version = "1.61.0"
88
description = "Type erased vector. Most operations can be done without type knowledge. Mostly zero overhead."

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Type erased vector. All elements have the same type.
77

88
Designed to be type-erased as far as possible - most of the operations does not know about concrete type.
99

10-
Only destruct operations have additional overhead of indirect call.
10+
Only type-erased destruct and clone operations have additional overhead of indirect call.
1111

1212
# Usage
1313

src/ops/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ pub type SwapRemove<'a, Traits, M> = TempValue<swap_remove::SwapRemove<'a, AnyVe
4242
/// [`ElementIterator`]: crate::iter::ElementIterator
4343
pub type Drain<'a, Traits, M> = Iter<drain::Drain<'a, AnyVecPtr<Traits, M>>>;
4444

45-
// TODO: change template arguments order<I, Traits, M>
4645
/// A splicing [`ElementIterator`] for [`AnyVec`]. Return [`Element`] items.
4746
///
4847
/// This is created by [`AnyVec::splice`].

0 commit comments

Comments
 (0)