Skip to content

Commit 17ad019

Browse files
committed
chore: Release
1 parent 4ed4703 commit 17ad019

File tree

9 files changed

+26
-17
lines changed

9 files changed

+26
-17
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.5] - 2024-07-05
11+
1012
### Fixes
1113

1214
- *(build)* List correct default for `--destination`
@@ -713,7 +715,8 @@ this.
713715
[@tak1n]: https://github.com/tak1n
714716

715717
<!-- next-url -->
716-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.4...HEAD
718+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.5...HEAD
719+
[0.19.5]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.4...v0.19.5
717720
[0.19.4]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.3...v0.19.4
718721
[0.19.3]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.2...v0.19.3
719722
[0.19.2]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.1...v0.19.2

Cargo.lock

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

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ assigning_clones = "allow" # TODO
9090

9191
[package]
9292
name = "cobalt-bin"
93-
version = "0.19.4"
93+
version = "0.19.5"
9494
description = "Static site generator written in Rust"
9595
readme = "README.md"
9696
categories = ["command-line-utilities"]
@@ -133,8 +133,8 @@ name = "cobalt"
133133
doc = false
134134

135135
[dependencies]
136-
cobalt-config = { version = "=0.19.3", path = "crates/config", features = ["unstable"] }
137-
cobalt-core = { version = "=0.19.3", path = "crates/core", features = ["unstable"] }
136+
cobalt-config = { version = "=0.19.4", path = "crates/config", features = ["unstable"] }
137+
cobalt-core = { version = "=0.19.4", path = "crates/core", features = ["unstable"] }
138138
clap = { version = "4.5", features = ["derive", "wrap_help"] }
139139
clap-verbosity-flag = "2.2"
140140
proc-exit = "2"
@@ -170,7 +170,7 @@ sitemap = "0.4"
170170
open = "5"
171171
dunce = "1.0.4"
172172

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

176176
sass-rs = { version = "0.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.3"
3+
version = "0.19.4"
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.3"
3+
version = "0.19.4"
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.3", path = "..//config", features = ["unstable"] }
23+
cobalt-config = { version = "=0.19.4", path = "..//config", features = ["unstable"] }
2424
ignore = "0.4"
2525
walkdir = "2.5"
2626
liquid-core = "0.26"

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.10] - 2024-07-05
11+
1012
## [0.1.9] - 2024-07-05
1113

1214
### Fixes
@@ -46,7 +48,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4648
## [0.1.1] - 2022-04-04
4749

4850
<!-- next-url -->
49-
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.9...HEAD
51+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.10...HEAD
52+
[0.1.10]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.9...engarde-v0.1.10
5053
[0.1.9]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.8...engarde-v0.1.9
5154
[0.1.8]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.7...engarde-v0.1.8
5255
[0.1.7]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.6...engarde-v0.1.7

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.9"
3+
version = "0.1.10"
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.4] - 2024-07-05
11+
1012
## [0.3.3] - 2024-07-05
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/file-serve-v0.3.3...HEAD
61+
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.4...HEAD
62+
[0.3.4]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.3...file-serve-v0.3.4
6063
[0.3.3]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.2...file-serve-v0.3.3
6164
[0.3.2]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.1...file-serve-v0.3.2
6265
[0.3.1]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.0...file-serve-v0.3.1

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.3"
3+
version = "0.3.4"
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)