Skip to content

Commit 5fe3b68

Browse files
committed
chore: Release
1 parent 7450185 commit 5fe3b68

File tree

9 files changed

+27
-18
lines changed

9 files changed

+27
-18
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](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.20.2] - 2025-10-01
11+
1012
### Features
1113

1214
- Add `css` theme
@@ -770,7 +772,8 @@ this.
770772
[@tak1n]: https://github.com/tak1n
771773

772774
<!-- next-url -->
773-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.1...HEAD
775+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.2...HEAD
776+
[0.20.2]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.1...v0.20.2
774777
[0.20.1]: https://github.com/cobalt-org/cobalt.rs/compare/v0.20.0...v0.20.1
775778
[0.20.0]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.12...v0.20.0
776779
[0.19.12]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.11...v0.19.12

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 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.1"
104+
version = "0.20.2"
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.8", path = "crates/config", features = ["unstable"] }
148-
cobalt-core = { version = "=0.19.8", path = "crates/core", features = ["unstable"] }
147+
cobalt-config = { version = "=0.19.9", path = "crates/config", features = ["unstable"] }
148+
cobalt-core = { version = "=0.19.9", 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"
@@ -166,7 +166,7 @@ env_logger = "0.11.8"
166166
rss = "2.0.12"
167167
jsonfeed = "0.2.0"
168168
pulldown-cmark = {version="0.13.0", default-features = false, features = ["html"] }
169-
engarde = { version = "0.1.14", path = "crates/engarde" }
169+
engarde = { version = "0.1.15", path = "crates/engarde" }
170170
regex = "1.11.1"
171171
itertools = "0.14.0"
172172
ignore = "0.4.23"
@@ -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.9", path = "crates/file-serve", optional = true }
182+
file-serve = { version = "0.3.10", 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.8"
3+
version = "0.19.9"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
66
categories = ["command-line-utilities"]

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.8"
3+
version = "0.19.9"
44
description = "Static site generator written in Rust"
55
readme = "../../README.md"
66
categories = ["command-line-utilities"]
@@ -20,7 +20,7 @@ unstable = []
2020
preview_unstable = []
2121

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

crates/engarde/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](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.1.15] - 2025-10-01
11+
1012
### Features
1113

1214
- Built-in `css` theme
@@ -65,7 +67,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
6567
## [0.1.1] - 2022-04-04
6668

6769
<!-- next-url -->
68-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.14...HEAD
70+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.15...HEAD
71+
[0.1.15]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.14...engarde-v0.1.15
6972
[0.1.14]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.13...engarde-v0.1.14
7073
[0.1.13]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.12...engarde-v0.1.13
7174
[0.1.12]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.11...engarde-v0.1.12

crates/engarde/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "engarde"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
description = "Fenced Code Formatting"
55
readme = "README.md"
66
categories = ["parser-implementations", "parsing", "text-processing"]

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](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.3.10] - 2025-10-01
11+
1012
## [0.3.9] - 2025-09-25
1113

1214
## [0.3.8] - 2025-04-10
@@ -72,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7274
## [0.1.1] - 2022-04-04
7375

7476
<!-- next-url -->
75-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.9...HEAD
77+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.10...HEAD
78+
[0.3.10]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.9...file-serve-v0.3.10
7679
[0.3.9]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.8...file-serve-v0.3.9
7780
[0.3.8]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.7...file-serve-v0.3.8
7881
[0.3.7]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.6...file-serve-v0.3.7

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.9"
3+
version = "0.3.10"
44
description = "HTTP Static File Server"
55
categories = ["development-tools::testing", "web-programming::http-server"]
66
keywords = ["serve", "http-server", "static-files", "http", "server"]

0 commit comments

Comments
 (0)