Skip to content

Commit 446138b

Browse files
committed
chore: Release
1 parent d7d1241 commit 446138b

File tree

9 files changed

+27
-18
lines changed

9 files changed

+27
-18
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.19.9] - 2025-03-31
11+
1012
### Fixes
1113

1214
- *(pagination)* Don't panic when `all` paginator has no content
@@ -741,7 +743,8 @@ this.
741743
[@tak1n]: https://github.com/tak1n
742744

743745
<!-- next-url -->
744-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.8...HEAD
746+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.9...HEAD
747+
[0.19.9]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.8...v0.19.9
745748
[0.19.8]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.7...v0.19.8
746749
[0.19.7]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.6...v0.19.7
747750
[0.19.6]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.5...v0.19.6

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ assigning_clones = "allow" # TODO
9292

9393
[package]
9494
name = "cobalt-bin"
95-
version = "0.19.8"
95+
version = "0.19.9"
9696
description = "Static site generator written in Rust"
9797
readme = "README.md"
9898
categories = ["command-line-utilities"]
@@ -135,8 +135,8 @@ name = "cobalt"
135135
doc = false
136136

137137
[dependencies]
138-
cobalt-config = { version = "=0.19.5", path = "crates/config", features = ["unstable"] }
139-
cobalt-core = { version = "=0.19.5", path = "crates/core", features = ["unstable"] }
138+
cobalt-config = { version = "=0.19.6", path = "crates/config", features = ["unstable"] }
139+
cobalt-core = { version = "=0.19.6", path = "crates/core", features = ["unstable"] }
140140
clap = { version = "4.5.31", features = ["derive", "wrap_help"] }
141141
clap-verbosity-flag = "3.0.2"
142142
proc-exit = "2.0.2"
@@ -157,7 +157,7 @@ env_logger = "0.11.6"
157157
rss = "2.0.12"
158158
jsonfeed = "0.2.0"
159159
pulldown-cmark = {version="0.13.0", default-features = false, features = ["html"] }
160-
engarde = { version = "0.1.0", path = "crates/engarde" }
160+
engarde = { version = "0.1.13", path = "crates/engarde" }
161161
regex = "1.11.1"
162162
itertools = "0.14.0"
163163
ignore = "0.4.23"
@@ -170,7 +170,7 @@ sitemap = "0.4.1"
170170
open = "5.3.2"
171171
dunce = "1.0.5"
172172

173-
file-serve = { version = "0.3.6", path = "crates/file-serve", optional = true }
173+
file-serve = { version = "0.3.7", path = "crates/file-serve", optional = true }
174174
notify = { version = "8.0.0", optional = true, default-features = false, features = ["macos_fsevent"] }
175175

176176
sass-rs = { version = "0.2.2", optional = true }

crates/config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cobalt-config"
3-
version = "0.19.5"
3+
version = "0.19.6"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
66
keywords = ["static", "site", "generator"]

crates/core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cobalt-core"
3-
version = "0.19.5"
3+
version = "0.19.6"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
66
keywords = ["static", "site", "generator"]
@@ -20,7 +20,7 @@ unstable = []
2020
preview_unstable = []
2121

2222
[dependencies]
23-
cobalt-config = { version = "=0.19.5", path = "..//config", features = ["unstable"] }
23+
cobalt-config = { version = "=0.19.6", path = "..//config", features = ["unstable"] }
2424
ignore = "0.4.23"
2525
walkdir = "2.5.0"
2626
liquid-core = "0.26.9"

crates/engarde/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.1.13] - 2025-03-31
11+
1012
## [0.1.12] - 2025-02-27
1113

1214
### Compatibility
@@ -56,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5658
## [0.1.1] - 2022-04-04
5759

5860
<!-- next-url -->
59-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.12...HEAD
61+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.13...HEAD
62+
[0.1.13]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.12...engarde-v0.1.13
6063
[0.1.12]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.11...engarde-v0.1.12
6164
[0.1.11]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.10...engarde-v0.1.11
6265
[0.1.10]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.9...engarde-v0.1.10

crates/engarde/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "engarde"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
description = "Fenced Code Formatting"
55
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/engarde"
66
documentation = "http://docs.rs/engarde"

crates/file-serve/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.3.7] - 2025-03-31
11+
1012
## [0.3.6] - 2025-02-27
1113

1214
### Compatibility
@@ -66,7 +68,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6668
## [0.1.1] - 2022-04-04
6769

6870
<!-- next-url -->
69-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.6...HEAD
71+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.7...HEAD
72+
[0.3.7]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.6...file-serve-v0.3.7
7073
[0.3.6]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.5...file-serve-v0.3.6
7174
[0.3.5]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.4...file-serve-v0.3.5
7275
[0.3.4]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.3...file-serve-v0.3.4

crates/file-serve/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "file-serve"
3-
version = "0.3.6"
3+
version = "0.3.7"
44
description = "HTTP Static File Server"
55
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/file-serve"
66
documentation = "http://docs.rs/file-serve"

0 commit comments

Comments
 (0)