Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version bump to v0.4 #119

Merged
merged 10 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.


## Unreleased (44348c2..230d43e)
## 0.4.0 - 2024-07-05
#### Bug Fixes
- **(macros)** default controller methods output to response type - (b736094) - elcharitas
- **(routes)** grouped routes resolving with blank screen issue - (c0c890c) - elcharitas
Expand Down
118 changes: 59 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ authors = [

[packages]
ngyn = { path = "crates/core" }
ngyn_cli = { path = "crates/cli" }
ngyn-cli = { path = "crates/cli" }
ngyn_macros = { path = "crates/macros" }
ngyn_shared = { path = "crates/shared" }
ngyn-hyper = { path = "crates/hyper" }
ngyn-vercel = { path = "crates/vercel" }
4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "ngyn_cli"
name = "ngyn-cli"
version = "0.0.1"
edition = "2021"
description = "Modular backend framework for web applications"
Expand Down Expand Up @@ -46,7 +46,7 @@ console = "^0.15.0"
exitcode = "^1.1.2"
tracing = "^0.1.34"
tracing-tree = { version = "0.2.1" }
tracing-subscriber = { version = "^0.3.11", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }


[features]
Expand Down
64 changes: 0 additions & 64 deletions crates/core/CHANGELOG.md

This file was deleted.

1 change: 1 addition & 0 deletions crates/core/CHANGELOG.md
6 changes: 3 additions & 3 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ngyn"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Modular backend framework for web applications"
license = "MIT"
Expand All @@ -14,6 +14,6 @@ async-trait = "0.1"
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
ngyn_macros = { version = "0.3.1", path = "../macros" }
ngyn_shared = { version = "0.3.1", path = "../shared" }
ngyn_macros = { version = "^0.4.0", path = "../macros" }
ngyn_shared = { version = "^0.4.0", path = "../shared" }
tokio = { version = "1", features = ["full"] }
6 changes: 4 additions & 2 deletions crates/hyper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[package]
name = "ngyn-hyper"
version = "0.3.1"
version = "0.1.0"
edition = "2021"
description = "Hyper Platform for ngyn web framework"
license = "MIT"

[dependencies]
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
ngyn_shared = { version = "0.3.1", path = "../shared" }
ngyn_shared = { version = "^0.4.0", path = "../shared" }
tokio = { version = "1", features = ["full"] }
4 changes: 2 additions & 2 deletions crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ngyn_macros"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Modular backend framework for web applications"
license = "MIT"

[dependencies]
syn = "2.0"
quote = "1.0"
ngyn_shared = { version = "0.3.1", path = "../shared" }
ngyn_shared = { version = "^0.4.0", path = "../shared" }

[lib]
path = "src/lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ngyn_shared"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
description = "Modular backend framework for web applications"
license = "MIT"
Expand Down
Loading
Loading