Skip to content

Commit

Permalink
chore: release 1.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
micooz committed Nov 6, 2021
1 parent c5fc9b2 commit b6194f0
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
required: true
version:
description: 'Asset version to deploy'
default: 'v1.0.0-alpha.3'
default: 'v1.0.0-alpha.4'
required: true
arch:
description: 'Asset binary architecture (Rust format)'
Expand Down
10 changes: 5 additions & 5 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
@@ -1,6 +1,6 @@
[package]
name = "bp"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Micooz Lee <[email protected]>"]
description = "bp is a lightweight and efficient proxy written in pure Rust."
repository = "https://github.com/micooz/bp"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build & Release](https://github.com/micooz/bp/actions/workflows/build-release.yml/badge.svg)](https://github.com/micooz/bp/actions/workflows/build-release.yml)
[![Build & Test](https://github.com/micooz/bp/actions/workflows/build-test.yml/badge.svg)](https://github.com/micooz/bp/actions/workflows/build-test.yml)
[![Build & Test (Self Hosted)](https://github.com/micooz/bp/actions/workflows/build-test-self-hosted.yml/badge.svg)](https://github.com/micooz/bp/actions/workflows/build-test-self-hosted.yml)

# bp

Expand Down
2 changes: 1 addition & 1 deletion USAGE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bp 1.0.0-alpha.3
bp 1.0.0-alpha.4

Lightweight and efficient proxy written in pure Rust

Expand Down
2 changes: 1 addition & 1 deletion bp-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-cli"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bp-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-core"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion bp-core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub const TCP_CONNECT_TIMEOUT_SECONDS: u64 = 10;
/// The read or write timeout for each connection
pub const READ_WRITE_TIMEOUT_SECONDS: u64 = 60;

// TODO: reduce buffer memory usage
/// Receive buffer size for each connection
pub const RECV_BUFFER_SIZE: usize = 1024 * 1024; // 1MB

/// The max transmission unit for udp packet
Expand Down
2 changes: 1 addition & 1 deletion bp-monitor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-monitor"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bp-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-test"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Micooz Lee <[email protected]>"]
description = "bp is a lightweight and efficient proxy written in pure Rust."
repository = "https://github.com/micooz/bp"
Expand Down

0 comments on commit b6194f0

Please sign in to comment.