Skip to content

Commit

Permalink
Merge pull request #29 from jofas/version-bump
Browse files Browse the repository at this point in the history
Version bump prep `v0.2.6`
  • Loading branch information
jofas authored Apr 22, 2023
2 parents a856f68 + 429e556 commit d096d23
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html>).


## [0.2.6]

### Added

* `hash_map` macro

* `hash_map_e` macro

* `hash_set` macro

* `binary_heap` macro

* `vec_deque` macro

* `vec_deque_e` macro

* `linked_list` macro

* `linked_list_e` macro

### Deprecated

* `map` macro

* `set` macro


## [0.2.5]

### 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 = "map-macro"
version = "0.2.5"
version = "0.2.6"
authors = ["jofas <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

1 comment on commit d096d23

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: d096d23 Previous: a856f68 Ratio
map allocation 175365644 ns/iter (± 98710) 186146383 ns/iter (± 83621) 0.94
set allocation 214307980 ns/iter (± 48499) 204437498 ns/iter (± 113316) 1.05
vec_no_clone allocation 837450588 ns/iter (± 8514030) 904896600 ns/iter (± 7497810) 0.93

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.