Merge pull request #38 from JasterV/chore/upgrade-to-0.2.0-version

chore: upgrade to 0.2.0 version
This commit is contained in:
Víctor Martínez 2024-02-26 12:14:32 +01:00 committed by GitHub
commit 890a3232e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -4,7 +4,8 @@ members = ["test-context", "test-context-macros"]
[workspace.package] [workspace.package]
edition = "2021" edition = "2021"
version = "0.1.6" version = "0.2.0"
rust-version = "1.75.0"
homepage = "https://github.com/JasterV/test-context" homepage = "https://github.com/JasterV/test-context"
repository = "https://github.com/JasterV/test-context" repository = "https://github.com/JasterV/test-context"
authors = [ authors = [

View file

@ -2,6 +2,7 @@
name = "test-context-macros" name = "test-context-macros"
description = "Macro crate for test-context" description = "Macro crate for test-context"
version.workspace = true version.workspace = true
rust-version.workspace = true
edition.workspace = true edition.workspace = true
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true

View file

@ -1,10 +1,10 @@
[package] [package]
name = "test-context" name = "test-context"
rust-version = "1.75.0"
description = "A library for providing custom setup/teardown for Rust tests without needing a test harness" description = "A library for providing custom setup/teardown for Rust tests without needing a test harness"
readme = "../README.md" readme = "../README.md"
keywords = ["test", "setup", "teardown"] keywords = ["test", "setup", "teardown"]
categories = ["development-tools::testing"] categories = ["development-tools::testing"]
rust-version.workspace = true
version.workspace = true version.workspace = true
edition.workspace = true edition.workspace = true
homepage.workspace = true homepage.workspace = true
@ -13,7 +13,7 @@ authors.workspace = true
license.workspace = true license.workspace = true
[dependencies] [dependencies]
test-context-macros = { version = "0.1.6", path = "../test-context-macros/" } test-context-macros = { version = "0.2.0", path = "../test-context-macros/" }
futures = "0.3" futures = "0.3"
[dev-dependencies] [dev-dependencies]