Skip to content

Commit 3df3fee

Browse files
committed
chore: Release
1 parent cabc6cd commit 3df3fee

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.20.1] - 2025-09-25
11+
1012
### Features
1113

1214
- Include tags and categories in CSS
@@ -763,7 +765,8 @@ this.
763765
[@tak1n]: https://github.com/tak1n
764766

765767
<!-- next-url -->
766-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.0...HEAD
768+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.1...HEAD
769+
[0.20.1]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.0...v0.20.1
767770
[0.20.0]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.12...v0.20.0
768771
[0.19.12]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.11...v0.19.12
769772
[0.19.11]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.10...v0.19.11

Cargo.lock

Lines changed: 4 additions & 4 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
@@ -101,7 +101,7 @@ lto = true
101101

102102
[package]
103103
name = "cobalt-bin"
104-
version = "0.20.0"
104+
version = "0.20.1"
105105
description = "Static site generator written in Rust"
106106
readme = "README.md"
107107
categories = ["command-line-utilities"]
@@ -144,8 +144,8 @@ name = "cobalt"
144144
doc = false
145145

146146
[dependencies]
147-
cobalt-config = { version = "=0.19.7", path = "crates/config", features = ["unstable"] }
148-
cobalt-core = { version = "=0.19.7", path = "crates/core", features = ["unstable"] }
147+
cobalt-config = { version = "=0.19.8", path = "crates/config", features = ["unstable"] }
148+
cobalt-core = { version = "=0.19.8", path = "crates/core", features = ["unstable"] }
149149
clap = { version = "4.5.37", features = ["derive", "wrap_help"] }
150150
clap-verbosity-flag = "3.0.2"
151151
proc-exit = "2.0.2"
@@ -179,7 +179,7 @@ sitemap = "0.4.1"
179179
open = "5.3.2"
180180
dunce = "1.0.5"
181181

182-
file-serve = { version = "0.3.8", path = "crates/file-serve", optional = true }
182+
file-serve = { version = "0.3.9", path = "crates/file-serve", optional = true }
183183
notify = { version = "8.0.0", optional = true, default-features = false, features = ["macos_fsevent"] }
184184

185185
grass = { version = "0.13.4", features = ["random"], default-features = false, optional = true }

crates/config/Cargo.toml

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

crates/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cobalt-core"
3-
version = "0.19.7"
3+
version = "0.19.8"
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.7", path = "..//config", features = ["unstable"] }
23+
cobalt-config = { version = "=0.19.8", path = "..//config", features = ["unstable"] }
2424
ignore = "0.4.23"
2525
walkdir = "2.5.0"
2626
liquid-core = "0.26.9"

crates/file-serve/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.9] - 2025-09-25
11+
1012
## [0.3.8] - 2025-04-10
1113

1214
## [0.3.7] - 2025-03-31
@@ -70,7 +72,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7072
## [0.1.1] - 2022-04-04
7173

7274
<!-- next-url -->
73-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.8...HEAD
75+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.9...HEAD
76+
[0.3.9]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.8...file-serve-v0.3.9
7477
[0.3.8]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.7...file-serve-v0.3.8
7578
[0.3.7]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.6...file-serve-v0.3.7
7679
[0.3.6]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.5...file-serve-v0.3.6

crates/file-serve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "file-serve"
3-
version = "0.3.8"
3+
version = "0.3.9"
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)