Skip to content

Commit 055a129

Browse files
committed
v0.1.2
1 parent 9ac9fb3 commit 055a129

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-http-rendezvous"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Quentin Gliech <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-http-rendezvous-server"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Quentin Gliech <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -13,4 +13,4 @@ hyper = { version = "0.14.20", features = ["server"] }
1313
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
1414
tracing-subscriber = "0.3.16"
1515

16-
matrix-http-rendezvous = { path = "../", version = "0.1.1" }
16+
matrix-http-rendezvous = { path = "../", version = "0.1.2" }

server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async fn main() {
2424

2525
let app = matrix_http_rendezvous::router("");
2626

27-
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
27+
let addr = SocketAddr::from(([127, 0, 0, 1], 8090));
2828

2929
hyper::Server::bind(&addr)
3030
.serve(app.into_make_service())

synapse/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "matrix-http-rendezvous-synapse"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Quentin Gliech <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -23,4 +23,4 @@ serde = { version = "1.0.145", features = ["derive"] }
2323
tower = { version = "0.4.13", features = ["util"] }
2424
tracing = { version = "0.1.37", features = ["log", "log-always"] }
2525

26-
matrix-http-rendezvous = { path = "../", version = "0.1.1" }
26+
matrix-http-rendezvous = { path = "../", version = "0.1.2" }

synapse/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ authors = [
2020

2121
[tool.poetry]
2222
name = "matrix_http_rendezvous_synapse"
23-
version = "0.1.1"
23+
version = "0.1.2"
2424
description = "A Matrix Synapse module which implements MSC3886"
2525
authors = ["Quentin Gliech <[email protected]>"]
2626

0 commit comments

Comments
 (0)