Skip to content

Commit

Permalink
Prepare new release v0.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatz committed Jan 24, 2025
1 parent fdfba47 commit bda3c84
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.5.2

* Add file-system APIs to JS/TS runtime to facility accessing resources, e.g.
templates for SSR (see example/colab-clicker-ssr).
* Add a timeout to graceful shutdown to deal with long-lived streaming connections.
* Allow short-cutting above timeout by pressing a Ctrl+C second time.

## v0.5.1

* Update SQLite from 3.46.1 to 3.48.0.
Expand Down
2 changes: 1 addition & 1 deletion trailbase-core/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ async fn shutdown_signal() {
_ = sleep(Duration::from_secs(1)) => {}
_ = signal::ctrl_c() => {
println!("Got Ctrl+C. Shutting down");
std::process::exit(0);
std::process::exit(1);
}
};

Expand Down

0 comments on commit bda3c84

Please sign in to comment.