Skip to content

Commit a6dd1e4

Browse files
Bump versions to 0.1.9 and 0.2.7
1 parent 96ddef9 commit a6dd1e4

5 files changed

Lines changed: 15 additions & 8 deletions

File tree

Cargo.lock

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

app/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ All notable changes to the penguin **CLI app** will be documented here.
66
## [Unreleased]
77

88

9-
## [0.2.6] - 2022-11-26
9+
## [0.2.7] - 2025-07-15
10+
- Updated the library to v0.1.9 ⇒ [check its changelog](../lib/CHANGELOG.md#019---2025-07-15).
11+
12+
## [0.2.6] - 2023-11-26
1013
- Improve `cargo doc` workflow by treating `remove` file system events as less important in watcher. Adds `--removal-debounce` flag. See [385b63](https://github.com/LukasKalbertodt/penguin/commit/385b6395142aff28fa5063162a8023e1392b0cf1).
1114
- Updated the library to v0.1.8 ⇒ [check its changelog](../lib/CHANGELOG.md#017---2022-06-22).
1215
- Add basic HTTP range request support for the file server. With this, video files served by Penguin can be played by Safari.

app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "penguin-app"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2018"
66

@@ -28,7 +28,7 @@ bunt = "0.2.4"
2828
log = "0.4"
2929
notify = "4"
3030
open = "2"
31-
penguin = { version = "0.1.8", path = "../lib" }
31+
penguin = { version = "0.1.9", path = "../lib" }
3232
pretty_env_logger = "0.4"
3333
structopt = "0.3"
3434
tokio = { version = "1", features = ["rt", "macros"]}

lib/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to the penguin **library** will be documented here.
55

66
## [Unreleased]
77

8+
## [0.1.9] - 2025-07-15
9+
- Fix `Content-Range` header for HTTP range requests
10+
811
## [0.1.8] - 2023-11-26
912
- Add basic HTTP range request support for the file server. With this, video files served by Penguin can be played by Safari.
1013
- Add body sniffing to detect HTML content (and insert reload script) more often (see #11)
@@ -75,7 +78,8 @@ All notable changes to the penguin **library** will be documented here.
7578
- Everything
7679

7780

78-
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.8...HEAD
81+
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.9...HEAD
82+
[0.1.9]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.8...lib-v0.1.9
7983
[0.1.8]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.7...lib-v0.1.8
8084
[0.1.7]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.6...lib-v0.1.7
8185
[0.1.6]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.5...lib-v0.1.6

lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "penguin"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)