Skip to content

Commit bda3c84

Browse files
committed
Prepare new release v0.5.2.
1 parent fdfba47 commit bda3c84

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.5.2
2+
3+
* Add file-system APIs to JS/TS runtime to facility accessing resources, e.g.
4+
templates for SSR (see example/colab-clicker-ssr).
5+
* Add a timeout to graceful shutdown to deal with long-lived streaming connections.
6+
* Allow short-cutting above timeout by pressing a Ctrl+C second time.
7+
18
## v0.5.1
29

310
* Update SQLite from 3.46.1 to 3.48.0.

trailbase-core/src/server/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ async fn shutdown_signal() {
410410
_ = sleep(Duration::from_secs(1)) => {}
411411
_ = signal::ctrl_c() => {
412412
println!("Got Ctrl+C. Shutting down");
413-
std::process::exit(0);
413+
std::process::exit(1);
414414
}
415415
};
416416

0 commit comments

Comments
 (0)