Skip to content

Commit 65c91f1

Browse files
authored
fixed issue with versions of internal dependencies (#117)
* fixed issue with versions of internal dependencies * increased global version
1 parent 4af52ad commit 65c91f1

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga
22
Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://tokio.rs/) runtime and [hyper](https://hyper.rs/) for fun and painless microservices crafting.
33

4-
[![latest](https://img.shields.io/badge/latest-0.6.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.6.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.80+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -23,7 +23,7 @@ Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://to
2323
### Dependencies
2424
```toml
2525
[dependencies]
26-
volga = "0.6.2"
26+
volga = "0.6.3"
2727
tokio = { version = "1", features = ["full"] }
2828
```
2929
### Simple request handler

volga-di/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga-di"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = "2021"
55
rust-version = "1.80.0"
66
authors = ["Roman Emreis <roman.emreis@outlook.com>"]
@@ -15,7 +15,7 @@ keywords = ["volga", "server", "http", "web", "framework"]
1515

1616
[dependencies]
1717
http = "1.3.1"
18-
volga-macros = { path = "../volga-macros", version = "0.6.1", features = ["di-derive"], optional = true }
18+
volga-macros = { path = "../volga-macros", version = "0.6.3", features = ["di-derive"], optional = true }
1919

2020
[features]
2121
default = []

volga-di/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga DI
22
A standalone, flexible, and easy-to-configure DI container.
33

4-
[![latest](https://img.shields.io/badge/latest-0.6.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.6.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.80+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -14,17 +14,17 @@ A standalone, flexible, and easy-to-configure DI container.
1414
#### Standalone
1515
```toml
1616
[dependencies]
17-
volga-di = "0.6.2"
17+
volga-di = "0.6.3"
1818
```
1919
#### Part of Volga Web Framework
2020
```toml
2121
[dependencies]
22-
volga = { version = "0.6.2", features = ["di"] }
22+
volga = { version = "0.6.3", features = ["di"] }
2323
```
2424
#### Derive-macro support
2525
```toml
2626
[dependencies]
27-
volga = { version = "0.6.2", features = ["di-full"] }
27+
volga = { version = "0.6.3", features = ["di-full"] }
2828
```
2929

3030
### Example

volga-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga-macros"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = "2021"
55
rust-version = "1.80.0"
66
authors = ["Roman Emreis <roman.emreis@outlook.com>"]

volga-macros/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga Macros
22
Macros library for Volga Web Framework
33

4-
[![latest](https://img.shields.io/badge/latest-0.6.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.6.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.80+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -12,6 +12,6 @@ Macros library for Volga Web Framework
1212
## Dependencies
1313
```toml
1414
[dependencies]
15-
volga = { version = "0.6.2", features = ["macros"] }
15+
volga = { version = "0.6.3", features = ["macros"] }
1616
```
1717

volga/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = "2021"
55
rust-version = "1.80.0"
66
authors = ["Roman Emreis <roman.emreis@outlook.com>"]
@@ -45,8 +45,8 @@ sha1 = { version = "0.10.6", optional = true }
4545
tokio-rustls = { version = "0.26.2", default-features = false, features = ["tls12", "ring"], optional = true }
4646
tokio-tungstenite = { version = "0.27.0", optional = true }
4747
tracing = { version = "0.1.41", default-features = false, optional = true }
48-
volga-di = { path = "../volga-di", version = "0.6.1", optional = true }
49-
volga-macros = { path = "../volga-macros", version = "0.6.1", optional = true }
48+
volga-di = { path = "../volga-di", version = "0.6.3", optional = true }
49+
volga-macros = { path = "../volga-macros", version = "0.6.3", optional = true }
5050

5151
[dev-dependencies]
5252
base64 = { version = "0.22.1" }

volga/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga
22
Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://tokio.rs/) runtime and [hyper](https://hyper.rs/) for fun and painless microservices crafting.
33

4-
[![latest](https://img.shields.io/badge/latest-0.6.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.6.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.80+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -23,7 +23,7 @@ Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://to
2323
### Dependencies
2424
```toml
2525
[dependencies]
26-
volga = "0.6.2"
26+
volga = "0.6.3"
2727
tokio = { version = "1", features = ["full"] }
2828
```
2929
### Simple request handler

0 commit comments

Comments
 (0)