Compare commits

...

3 Commits

Author SHA1 Message Date
cuddle-please
56e2f0266b 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-01 13:47:12 +00:00
688e742f20 feat: set mit
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-01 15:46:50 +02:00
c6dbf5f4ea feat use mit license 2025-07-01 15:46:33 +02:00
4 changed files with 14 additions and 3 deletions

View File

@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.0.2] - 2025-07-01
### Added
- set mit
- feat use mit license
### Docs
- correct
## [0.0.1] - 2025-07-01 ## [0.0.1] - 2025-07-01
### Added ### Added

2
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]] [[package]]
name = "noworkers" name = "noworkers"
version = "0.1.0" version = "0.0.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"tokio", "tokio",

View File

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

View File

@ -3,7 +3,7 @@ name = "noworkers"
edition = "2024" edition = "2024"
readme = "../../README.md" readme = "../../README.md"
version.workspace = true version.workspace = true
license = "MIT or APACHE" license.workspace = true
repository = "https://git.front.kjuulh.io/kjuulh/noworkers" repository = "https://git.front.kjuulh.io/kjuulh/noworkers"
authors = ["kjuulh <contact@kasperhermansen.com>"] authors = ["kjuulh <contact@kasperhermansen.com>"]
description = "A small asyncronous worker pool manages thread pool limiting, cancellation and error propogation, inspired by golangs errgroup (requires tokio)" description = "A small asyncronous worker pool manages thread pool limiting, cancellation and error propogation, inspired by golangs errgroup (requires tokio)"