Skip to content

Commit

Permalink
Merge branch 'release/0.12.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Mar 12, 2022
2 parents 938942a + 67a0a6a commit 2ec5ad8
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 72 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.12.1] - 2022-03-12
### Changed
* Update dependencies
* (Docker) Use Rust version 1.59.0 in build
* Change fonts in top page and /noscript page

## [0.12.0] - 2022-01-23
### Changed
* Update dependencies
Expand Down Expand Up @@ -211,7 +217,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Added
* Implement basic Piping Server

[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.0...HEAD
[Unreleased]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.1...HEAD
[0.12.1]: https://github.com/nwtgck/piping-server-rust/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/nwtgck/piping-server-rust/compare/v0.10.2...v0.11.0
[0.10.2]: https://github.com/nwtgck/piping-server-rust/compare/v0.10.1...v0.10.2
Expand Down
117 changes: 56 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "piping-server"
version = "0.12.0"
version = "0.12.1"
authors = ["Ryo Ota <nwtgck@nwtgck.org>"]
edition = "2018"

[dependencies]
hyper = { version = "0.14", features = ["stream", "server", "http1", "http2", "tcp"] }
futures = { version = "0.3", default-features = false, features = ["std"] }
clap = { version = "3.0.10", features = ["derive"] }
clap = { version = "3.1.6", features = ["derive"] }
http = "0.2"
tokio = { version = "1.15", features = ["rt-multi-thread", "macros", "net"] }
tokio = { version = "1.17", features = ["rt-multi-thread", "macros", "net"] }
rustls = "0.20"
rustls-pemfile = "0.2"
rustls-pemfile = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
tokio-rustls = "0.23"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NOTE: Multi-stage Build

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

# Install tini
ENV TINI_VERSION v0.19.0
Expand Down
Loading

0 comments on commit 2ec5ad8

Please sign in to comment.