Skip to content

Commit 3540987

Browse files
committed
v4.0.9
1 parent 0225f20 commit 3540987

File tree

14 files changed

+20
-15
lines changed

14 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# vercel-rust changelog
22

3+
## 4.0.9
4+
5+
- Fix select binary correctly while vercel dev [#184](https://github.com/vercel-community/rust/pull/184)
6+
37
## 4.0.8
48

59
- Use debug build for `vercel dev` [#168](https://github.com/vercel-community/rust/pull/168)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Community-maintained package to support using [Rust](https://www.rust-lang.org/)
2828
{
2929
"functions": {
3030
"api/**/*.rs": {
31-
"runtime": "[email protected].8"
31+
"runtime": "[email protected].9"
3232
}
3333
}
3434
}
@@ -174,7 +174,7 @@ pub async fn handler(req: Request) -> Result<Response<Body>, Error> {}
174174
{
175175
"functions": {
176176
"api/main.rs": {
177-
"runtime": "[email protected].8"
177+
"runtime": "[email protected].9"
178178
}
179179
}
180180
}

examples/cron/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"outputDirectory": "public",
33
"functions": {
44
"api/**/*.rs": {
5-
"runtime": "[email protected].7"
5+
"runtime": "[email protected].9"
66
}
77
},
88
"crons": [

examples/nextjs/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.rs": {
4-
"runtime": "[email protected].7"
4+
"runtime": "[email protected].9"
55
}
66
}
77
}

examples/route-merge/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/main.rs": {
4-
"runtime": "[email protected].7"
4+
"runtime": "[email protected].9"
55
}
66
}
77
}

examples/simple/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"outputDirectory": "public",
33
"functions": {
44
"api/**/*.rs": {
5-
"runtime": "[email protected].7"
5+
"runtime": "[email protected].9"
66
}
77
}
88
}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vercel-rust",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
44
"description": "Rust runtime for Vercel Functions.",
55
"homepage": "https://github.com/vercel-community/rust",
66
"repository": {
@@ -45,5 +45,6 @@
4545
"rimraf": "^4.1.1",
4646
"ts-jest": "^29.0.5",
4747
"vercel": "^28.16.15"
48-
}
48+
},
49+
"packageManager": "[email protected]+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
4950
}

test/fixtures/01-include-files/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.rs": {
4-
"runtime": "[email protected].7",
4+
"runtime": "[email protected].9",
55
"includeFiles": "static/**/*.{txt,svg}"
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.rs": {
4-
"runtime": "[email protected].7"
4+
"runtime": "[email protected].9"
55
}
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.rs": {
4-
"runtime": "[email protected].7"
4+
"runtime": "[email protected].9"
55
}
66
}
77
}

0 commit comments

Comments
 (0)