Skip to content
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
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "1.2.6"
version = "2.0.0"
edition = "2024"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bindings/csharp/FusionFramework/FusionFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RootNamespace>FusionFramework</RootNamespace>
<AssemblyName>FusionFramework</AssemblyName>
<PackageId>Fusion-Framework</PackageId>
<Version>1.2.6</Version>
<Version>2.0.0</Version>
<Authors>CipherUnits</Authors>
<Company>CipherUnits</Company>
<Description>Fusion Framework managed bindings (C#) over fusion-ffi / fusion-core</Description>
Expand Down
2 changes: 1 addition & 1 deletion bindings/csharp/FusionFramework/Header.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static Dictionary<string, string> Fingerprint()
{
["X-Powered-By"] = "Fusion Framework",
["X-Framework"] = "Fusion",
["X-Fusion-Version"] = "1.2.6",
["X-Fusion-Version"] = "2.0.0",
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/fusion-node/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ header.fingerprint = () =>
: {
'X-Powered-By': 'Fusion Framework',
'X-Framework': 'Fusion',
['X-Fusion-Version']: '1.2.6',
['X-Fusion-Version']: '2.0.0',
}

function isThenable(value) {
Expand Down
2 changes: 1 addition & 1 deletion crates/fusion-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fusion-framework",
"version": "1.2.6",
"version": "2.0.0",
"description": "Class-based HTTP framework for Node.js, powered by a shared Rust core via N-API",
"keywords": [
"fusion",
Expand Down
2 changes: 1 addition & 1 deletion crates/fusion-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "fusion-framework"
version = "1.2.6"
version = "2.0.0"
description = "Class-based HTTP framework for Python, powered by a shared Rust core"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
4 changes: 2 additions & 2 deletions crates/fusion-py/python/fusion_framework/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ def framework_headers() -> Middleware:
hdr, "FRAMEWORK_POWERED_BY", "Fusion Framework"
),
getattr(hdr, "X_FRAMEWORK", "X-Framework"): getattr(hdr, "FRAMEWORK_ID", "Fusion"),
getattr(hdr, "X_FUSION_VERSION", "X-Fusion-Version"): "1.2.6",
getattr(hdr, "X_FUSION_VERSION", "X-Fusion-Version"): "2.0.0",
}
except Exception:
extra = {
"X-Powered-By": "Fusion Framework",
"X-Framework": "Fusion",
"X-Fusion-Version": "1.2.6",
"X-Fusion-Version": "2.0.0",
}

def middleware(request: RequestDict, call_next: Callable[[RequestDict], Any]) -> Any:
Expand Down
Loading