Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From limqch-0.2.0 To limqch-0.2.1
|
2025-04-12
| ||
| 20:53 | Fix typos. check-in: 89ce025964 user: jan tags: trunk | |
| 20:37 | Release maintenance. check-in: 79296cea77 user: jan tags: limqch-0.2.1, trunk | |
| 20:35 | Use limq 0.3.1 to get bugfix. check-in: ef18178262 user: jan tags: trunk | |
|
2025-04-10
| ||
| 23:43 | Release maintenance. check-in: 51ff61f471 user: jan tags: limqch-0.2.0, trunk | |
| 23:24 | Docs. check-in: 8c996a0bf2 user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | [package] name = "limqch" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "limqch" version = "0.2.1" edition = "2024" license = "0BSD" # https://crates.io/category_slugs categories = [ "concurrency" ] keywords = [ "channel", "bounded" ] repository = "https://repos.qrnch.tech/pub/limqch" description = "A channel built on top of limq." |
| ︙ | ︙ | |||
19 20 21 22 23 24 25 |
]
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
| | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
]
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
limq = { version = "0.3.1" }
parking_lot = { version = "0.12.3" }
wakerizer = { version = "0.1.0" }
[dev-dependencies]
tokio = { version = "1.44.1", features = ["macros", "rt", "rt-multi-thread"] }
[package.metadata.docs.rs]
|
| ︙ | ︙ |
Changes to www/changelog.md.
1 2 3 4 5 6 | # Change Log ⚠️ indicates a breaking change. ## [Unreleased] | | > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # Change Log ⚠️ indicates a breaking change. ## [Unreleased] [Details](/vdiff?from=limqch-0.2.1&to=trunk) ### Added ### Changed ### Removed --- ## [0.2.1] - 2025-04-12 [Details](/vdiff?from=limqch-0.2.0&to=limqch-0.2.1) ### Changed - Use `limq` `0.3.1` to get `force_push_oc()` bugfix that was causing it not to eject more than one element when needed. --- ## [0.2.0] - 2025-04-11 [Details](/vdiff?from=limqch-0.1.0&to=limqch-0.2.0) ### Changed |
| ︙ | ︙ |