Skip to content

Commit 2ec5ad8

Browse files
committed
Merge branch 'release/0.12.1'
2 parents 938942a + 67a0a6a commit 2ec5ad8

File tree

7 files changed

+83
-72
lines changed

7 files changed

+83
-72
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77

8+
## [0.12.1] - 2022-03-12
9+
### Changed
10+
* Update dependencies
11+
* (Docker) Use Rust version 1.59.0 in build
12+
* Change fonts in top page and /noscript page
13+
814
## [0.12.0] - 2022-01-23
915
### Changed
1016
* Update dependencies
@@ -211,7 +217,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
211217
### Added
212218
* Implement basic Piping Server
213219

214-
[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.0...HEAD
220+
[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.1...HEAD
221+
[0.12.1]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.0...v0.12.1
215222
[0.12.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.11.0...v0.12.0
216223
[0.11.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.10.2...v0.11.0
217224
[0.10.2]: https://github.com/nwtgck/piping-server-rust/compare/v0.10.1...v0.10.2

Cargo.lock

Lines changed: 56 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "piping-server"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Ryo Ota <nwtgck@nwtgck.org>"]
55
edition = "2018"
66

77
[dependencies]
88
hyper = { version = "0.14", features = ["stream", "server", "http1", "http2", "tcp"] }
99
futures = { version = "0.3", default-features = false, features = ["std"] }
10-
clap = { version = "3.0.10", features = ["derive"] }
10+
clap = { version = "3.1.6", features = ["derive"] }
1111
http = "0.2"
12-
tokio = { version = "1.15", features = ["rt-multi-thread", "macros", "net"] }
12+
tokio = { version = "1.17", features = ["rt-multi-thread", "macros", "net"] }
1313
rustls = "0.20"
14-
rustls-pemfile = "0.2"
14+
rustls-pemfile = "0.3"
1515
futures-util = { version = "0.3", default-features = false, features = ["std"] }
1616
tokio-rustls = "0.23"
1717
log = "0.4"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NOTE: Multi-stage Build
22

3-
FROM nwtgck/rust-musl-builder:1.57.0 as build
3+
FROM nwtgck/rust-musl-builder:1.59.0 as build
44

55
# Install tini
66
ENV TINI_VERSION v0.19.0

0 commit comments

Comments
 (0)