2 Commits

Author SHA1 Message Date
58647725f9 chore(release): v0.0.2 (#2)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.0.2

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/nodrop/pulls/2
2025-07-22 22:09:29 +02:00
b0fe26597c docs: use public packages
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-22 22:08:45 +02:00
3 changed files with 8 additions and 3 deletions

View File

@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.2] - 2025-07-22
### Docs
- use public packages
## [0.0.1] - 2025-07-22 ## [0.0.1] - 2025-07-22
### Added ### Added

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.0.1" version = "0.0.2"
[workspace.dependencies] [workspace.dependencies]
nodrop = { path = "crates/nodrop" } nodrop = { path = "crates/nodrop" }

View File

@@ -22,14 +22,14 @@
```toml ```toml
[dependencies] [dependencies]
nodrop = { git = "https://github.com/kjuulh/nodrop" } nodrop = "*"
``` ```
### Enable `notmad` integration (optional) ### Enable `notmad` integration (optional)
```toml ```toml
[dependencies] [dependencies]
nodrop = { git = "https://github.com/kjuulh/nodrop", features = ["notmad"] } nodrop = { version = "*", features = ["notmad"] }
``` ```
--- ---