3 Commits

Author SHA1 Message Date
cuddle-please
cbe21dfbed chore(release): 0.0.2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-07-22 20:10:05 +00: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
ec2fde8ef5 chore(release): v0.0.1 (#1)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.0.1

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/nodrop/pulls/1
2025-07-22 22:07:14 +02:00
3 changed files with 23 additions and 3 deletions

20
CHANGELOG.md Normal file
View File

@@ -0,0 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.
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).
## [Unreleased]
## [0.0.2] - 2025-07-22
### Docs
- use public packages
## [0.0.1] - 2025-07-22
### Added
- add basic no drop
### Docs
- add readme

View File

@@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.1.0" 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"] }
``` ```
--- ---