chore: bump versions

This commit is contained in:
naskya 2024-07-16 22:21:36 +09:00
parent dfbd2b3457
commit 200b2d6e30
Signed by: naskya
GPG key ID: 712D413B3A9FED5C
3 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View file

@ -22,14 +22,14 @@ dependencies = [
[[package]]
name = "relax"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
dependencies = [
"relax-macros",
]
[[package]]
name = "relax-macros"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
dependencies = [
"proc-macro2",
"quote",

View file

@ -1,6 +1,6 @@
[package]
name = "relax-macros"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
license = "MIT OR Apache-2.0"
description = "Derive macro to implement Relax/Relaxed traits (https://crates.io/crates/relax)"

View file

@ -1,6 +1,6 @@
[package]
name = "relax"
version = "0.1.0-alpha.4"
version = "0.1.0-alpha.5"
license = "MIT OR Apache-2.0"
description = "Traits for TypeScript-like partial (“relaxed”) types"
@ -8,8 +8,8 @@ edition = { workspace = true }
rust-version = { workspace = true }
[features]
default = ["macros"]
macros = ["dep:relax-macros"]
default = ["derive"]
derive = ["dep:relax-macros"]
[lib]
crate-type = ["lib"]