Skip to content

Commit 406fde0

Browse files
Bump versions to 0.1.8 & 0.2.6 and update changelog
1 parent 385b639 commit 406fde0

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

app/CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ All notable changes to the penguin **CLI app** will be documented here.
66
## [Unreleased]
77

88

9+
## [0.2.6] - 2022-11-26
10+
- 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).
11+
- Updated the library to v0.1.8 ⇒ [check its changelog](../lib/CHANGELOG.md#017---2022-06-22).
12+
- Add basic HTTP range request support for the file server. With this, video files served by Penguin can be played by Safari.
13+
- Add body sniffing to detect HTML content (and insert reload script) more often (see #11)
14+
915
## [0.2.5] - 2022-06-22
1016

11-
- Updated the library to v0.1.6[check its changelog](../lib/CHANGELOG.md#017---2022-06-22).
17+
- Updated the library to v0.1.7[check its changelog](../lib/CHANGELOG.md#017---2022-06-22).
1218

1319
## [0.2.4] - 2022-06-08
1420

@@ -53,7 +59,8 @@ Updated the library to v0.1.2 ⇒ [check its changelog](../lib/CHANGELOG.md#012-
5359
- Everything
5460

5561

56-
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.5...HEAD
62+
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.6...HEAD
63+
[0.2.6]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.5...app-v0.2.6
5764
[0.2.5]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.4...app-v0.2.5
5865
[0.2.4]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.3...app-v0.2.4
5966
[0.2.3]: https://github.com/LukasKalbertodt/penguin/compare/app-v0.2.2...app-v0.2.3

app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "penguin-app"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
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.7", path = "../lib" }
31+
penguin = { version = "0.1.8", path = "../lib" }
3232
pretty_env_logger = "0.4"
3333
structopt = "0.3"
3434
tokio = { version = "1", features = ["rt", "macros"]}

lib/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to the penguin **library** will be documented here.
55

66
## [Unreleased]
77

8+
## [0.1.8] - 2023-11-26
9+
- Add basic HTTP range request support for the file server. With this, video files served by Penguin can be played by Safari.
10+
- Add body sniffing to detect HTML content (and insert reload script) more often (see #11)
11+
812
## [0.1.7] - 2022-06-22
913
### Fixed
1014
- Fix 404, "gateway error" and dir-listing pages that were broken in the previous release. (The JS code wasn't injected correctly, showing up as plain text. Woops.)
@@ -71,7 +75,8 @@ All notable changes to the penguin **library** will be documented here.
7175
- Everything
7276

7377

74-
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.7...HEAD
78+
[Unreleased]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.8...HEAD
79+
[0.1.8]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.7...lib-v0.1.8
7580
[0.1.7]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.6...lib-v0.1.7
7681
[0.1.6]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.5...lib-v0.1.6
7782
[0.1.5]: https://github.com/LukasKalbertodt/penguin/compare/lib-v0.1.4...lib-v0.1.5

lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "penguin"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)