Skip to content

Commit 1a9296f

Browse files
committed
chore: Bump version to 0.3.1 and remove debug output from server implementation
1 parent b795076 commit 1a9296f

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2025-09-27
9+
10+
### Changed
11+
- **Removed Unexpected Debug Output**
12+
- Eliminated stray `println!` statements from server modules for cleaner logs and production readiness.
13+
14+
### Internal
15+
- **Minor Code Cleanup**
16+
- Improved code hygiene by removing accidental debug prints.
17+
- No functional or API changes; purely internal maintenance.
18+
819

920
## [0.3.0] - 2025-09-27
1021

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kode-bridge"
33
authors = ["Tunglies"]
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66
description = "Modern HTTP Over IPC library for Rust with both client and server support (Unix sockets, Windows named pipes)."
77
license = "Apache-2.0"

src/ipc_http_server.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,6 @@ impl IpcHttpServer {
559559
/// Start the server and listen for connections
560560
pub async fn serve(&mut self) -> Result<()> {
561561
let listener_options = self.listener_options.try_clone()?;
562-
println!("Binding to options: {:?}", listener_options);
563562
let listener = listener_options
564563
.name(self.name.clone())
565564
.create_tokio()

0 commit comments

Comments
 (0)