Skip to content

Commit

Permalink
chore(cordyceps): prepare to release cordyceps 0.2.2
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Jun 21, 2022
1 parent 25beb39 commit f956111
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 37 additions & 1 deletion cordyceps/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,43 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## cordyceps-v0.2.1 - (2022-06-9)
## cordyceps-v0.2.2 - (2022-06-21)

[7cdb821](https://github.com/hawkw/mycelium/7cdb82146fdddfa564d0ba78536da0b7579a63e0)...[7504b88](https://github.com/hawkw/mycelium/7504b88ecd97683f1e22132b2822aabcee487d1a)


### Added

- Add `Cursor::current` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([9edf815](https://github.com/hawkw/mycelium/9edf81534f68d59e656a9ea897c1aa058dcf5d61), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `Cursor::peek_next/peek_prev` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([7ae435b](https://github.com/hawkw/mycelium/7ae435bab55736e4282e10203ce97abec6fb8fa1), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `Cursor::move_next/move_prev` ([2c9e972](https://github.com/hawkw/mycelium/2c9e9720e8270716631b23eb99e06f993c064e95))
- Add `Cursor::remove_current` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([ed587ee](https://github.com/hawkw/mycelium/ed587eecd0e19e83d7233a8ba33120fe89e4b4e2), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `List::cursor_back_mut` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([b555204](https://github.com/hawkw/mycelium/b5552046a65ce017d751acde3cee54d95726cf4c), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `Cursor::index` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([f5652cd](https://github.com/hawkw/mycelium/f5652cdd02764321aea19bf12d2a8730604159ca), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `Cursor::insert_before/after` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([5d97b41](https://github.com/hawkw/mycelium/5d97b4193829d89d246bc20b2d50cb6daba331e0), closes [#224](https://github.com/hawkw/mycelium/issues/224))
- Add `iter::Extend` for `List` ([#232](https://github.com/hawkw/mycelium/issues/232)) ([1c59f93](https://github.com/hawkw/mycelium/1c59f93a95b0ab8a806f29e948b2a7de640b26cf), closes [#225](https://github.com/hawkw/mycelium/issues/225))
- Add `iter::FromIterator` for `List` ([#232](https://github.com/hawkw/mycelium/issues/232)) ([d9bec37](https://github.com/hawkw/mycelium/d9bec377c84e14068445523395d06b107c36d7dc), closes [#226](https://github.com/hawkw/mycelium/issues/226))
- Add `List::append` ([#233](https://github.com/hawkw/mycelium/issues/233)) ([0a0fd42](https://github.com/hawkw/mycelium/0a0fd420b0047008cc5bab0d6451054a4757ce20))
- Add `List::split_off`/`try_split_off` ([#233](https://github.com/hawkw/mycelium/issues/233)) ([48167ce](https://github.com/hawkw/mycelium/48167ce50d9b4174b4783ff32f226ff9386deb78))
- Add `Cursor::split_before`/`after` ([#233](https://github.com/hawkw/mycelium/issues/233)) ([1093c36](https://github.com/hawkw/mycelium/1093c36bc5bc9aaf46ac0041fb947431b8cad461))
- Add `Cursor::splice_before/after` ([#234](https://github.com/hawkw/mycelium/issues/234)) ([cd73585](https://github.com/hawkw/mycelium/cd735857da9e0e00bac3eb67a9e294c55df4f99c))

### Deprecated

- Rename `cursor` to `cursor_front_mut` ([#227](https://github.com/hawkw/mycelium/issues/227)) ([d41c0cd](https://github.com/hawkw/mycelium/d41c0cd98355eea687ca4d2b82e729f05546e096))
- Include deprecations in changelog ([#235](https://github.com/hawkw/mycelium/issues/235)) ([95d0ade](https://github.com/hawkw/mycelium/95d0ade3c3faed2d393d1e8d00495ad3284143d3))
- Rename `list::Cursor` to `CursorMut` ([#236](https://github.com/hawkw/mycelium/issues/236)) ([3035be4](https://github.com/hawkw/mycelium/3035be4fef6ca619c2800cd4c22ae39fbef7b4ee))

### Documented

- Improve `List` and `CursorMut` docs ([#237](https://github.com/hawkw/mycelium/issues/237)) ([7504b88](https://github.com/hawkw/mycelium/7504b88ecd97683f1e22132b2822aabcee487d1a))

### Fixed

- Missing `len` in `List` debug impl ([#233](https://github.com/hawkw/mycelium/issues/233)) ([dc926e3](https://github.com/hawkw/mycelium/dc926e39757c4e5e07b1900527541010a61c9881))
- Wrong `Cursor::split_before` behavior ([#234](https://github.com/hawkw/mycelium/issues/234)) ([5e3583c](https://github.com/hawkw/mycelium/5e3583c387ca31d7a0703908cbefe31c1b81293d))

## cordyceps-v0.2.1 - (2022-06-10)

[e3fe8f8](https://github.com/hawkw/mycelium/e3fe8f84212fa5c4ac5865d36a3cad9267c98c7c)...[7cdb821](https://github.com/hawkw/mycelium/7cdb82146fdddfa564d0ba78536da0b7579a63e0)

Expand Down
2 changes: 1 addition & 1 deletion cordyceps/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cordyceps"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
description = "Mycelium intrusive data structures."
authors = ["Eliza Weisman <eliza@elizas.website>"]
Expand Down

0 comments on commit f956111

Please sign in to comment.