Skip to content

Commit

Permalink
fix version (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: khulnasoft-bot <[email protected]>
  • Loading branch information
NxPKG and khulnasoft-bot authored Dec 3, 2024
1 parent 1891b41 commit b785d8a
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion fastapi-actix-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add dependency declaration to `Cargo.toml`.

```toml
[dependencies]
fastapi-actix-web = "0.1"
fastapi-actix-web = "0.1.1"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion fastapi-actix-web/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! ```toml
//! [dependencies]
//! fastapi-actix-web = "0.1"
//! fastapi-actix-web = "0.1.1"
//! ```
//!
//! ## Examples
Expand Down
2 changes: 1 addition & 1 deletion fastapi-axum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add dependency declaration to `Cargo.toml`.

```toml
[dependencies]
fastapi-axum = "0.1"
fastapi-axum = "0.1.1"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion fastapi-axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! ```toml
//! [dependencies]
//! fastapi-axum = "0.1"
//! fastapi-axum = "0.1.1"
//! ```
//!
//! ## Examples
Expand Down
2 changes: 1 addition & 1 deletion fastapi-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add dependency declaration to `Cargo.toml`.

```toml
[build-dependencies]
fastapi-config = "0.1"
fastapi-config = "0.1.1"
```

## Examples
Expand Down
4 changes: 2 additions & 2 deletions fastapi-config/config-test-crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ serde = "1"
serde_json = "1"

[build-dependencies]
fastapi-config = { version = "0.1", path = "../../fastapi-config" }
fastapi-config = { version = "0.1.1", path = "../../fastapi-config" }

[dev-dependencies]
fastapi-config = { version = "0.1", path = "../../fastapi-config" }
fastapi-config = { version = "0.1.1", path = "../../fastapi-config" }

[workspace]
2 changes: 1 addition & 1 deletion fastapi-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
//!
//! ```toml
//! [build-dependencies]
//! fastapi-config = "0.1"
//! fastapi-config = "0.1.1"
//! ```
//!
//! ## Examples
Expand Down
2 changes: 1 addition & 1 deletion fastapi-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version.workspace = true
proc-macro = true

[dependencies]
fastapi-config = { version = "0.1", path = "../fastapi-config", optional = true }
fastapi-config = { version = "0.1.1", path = "../fastapi-config", optional = true }
once_cell = { version = "1.19.0", optional = true }
proc-macro2 = "1.0"
syn = { version = "2.0", features = ["full", "extra-traits"] }
Expand Down
4 changes: 2 additions & 2 deletions fastapi-scalar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
//! Use Scalar only without any boiler plate implementation.
//! ```toml
//! [dependencies]
//! fastapi-scalar = "0.1"
//! fastapi-scalar = "0.1.1"
//! ```
//!
//! Enable actix-web integration with Scalar.
//! ```toml
//! [dependencies]
//! fastapi-scalar = { version = "0.1", features = ["actix-web"] }
//! fastapi-scalar = { version = "0.1.1", features = ["actix-web"] }
//! ```
//!
//! # Using standalone
Expand Down
2 changes: 1 addition & 1 deletion fastapi-swagger-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ reqwest = { version = "0.12", features = [
"rustls-tls",
], default-features = false, optional = true }
url = { version = "2", optional = true }
fastapi-swagger-ui-vendored = { version = "0.1", path = "../fastapi-swagger-ui-vendored", optional = true }
fastapi-swagger-ui-vendored = { version = "0.1.1", path = "../fastapi-swagger-ui-vendored", optional = true }

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }

0 comments on commit b785d8a

Please sign in to comment.