Skip to content

Commit e34fac0

Browse files
Bump version
1 parent 8ea7e0b commit e34fac0

File tree

7 files changed

+9
-12
lines changed

7 files changed

+9
-12
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc
2323
include:
2424
- build: x86_64-linux
25-
os: ubuntu-20.04
25+
os: ubuntu-latest
2626
rust: stable
2727
target: x86_64-unknown-linux-gnu
2828
cross: false
2929
- build: aarch64-linux
30-
os: ubuntu-20.04
30+
os: ubuntu-latest
3131
rust: stable
3232
target: aarch64-unknown-linux-gnu
3333
cross: true
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
use-cross: ${{ matrix.cross }}
7070
command: build
71-
args: --release --target ${{ matrix.target }}
71+
args: --release --target ${{ matrix.target }} -p http-srv -p httpcli
7272

7373
# TODO:
7474
# - name: Strip release binary (linux and macos)

crates/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "httpcli"
3-
version = "0.2.0"
3+
version = "0.4.0"
44
edition = "2024"
55
description = "Http client"
66
authors = ["Saúl Valdelvira <saul@saulv.es>"]

crates/html/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
name = "rhtml"
33
description = "Html Utils"
44
authors = ["Saúl Valdelvira <saul@saulv.es>"]
5-
version = "0.1.6"
5+
version = "0.2.0"
66
edition = "2024"
77
license = "MIT"
88
readme = "README"
9-
10-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11-

crates/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-utils"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2024"
55
description = "Http utils"
66
authors = ["Saúl Valdelvira <saul@saulv.es>"]

crates/mime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rmime"
33
description = "MIME Type utils"
4-
version = "0.1.6"
4+
version = "0.2.0"
55
edition = "2024"
66
authors = ["Saúl Valdelvira <saul@saulv.es>"]
77
license = "MIT"

crates/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "http-srv"
33
description = "Http Server"
44
authors = ["Saúl Valdelvira <saul@saulv.es>"]
5-
version = "0.4.0"
5+
version = "0.5.0"
66
edition = "2024"
77
license = "MIT"
88
readme = "README"

crates/url/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "url-utils"
33
description = "Url Encode and Decode"
44
authors = ["Saúl Valdelvira <saul@saulv.es>"]
5-
version = "0.1.2"
5+
version = "0.2.0"
66
edition = "2024"
77
license = "MIT"
88
readme = "README"

0 commit comments

Comments
 (0)