chore: Release

This commit is contained in:
Ed Page 2024-04-15 11:39:02 -05:00
parent 8967c3cde0
commit 9305d4d411
9 changed files with 26 additions and 17 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.19.3] - 2024-04-15
### Compatibility
- MSRV is now 1.76.0
@ -704,7 +706,8 @@ this.
[@tak1n]: https://github.com/tak1n
<!-- next-url -->
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.2...HEAD
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.3...HEAD
[0.19.3]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.2...v0.19.3
[0.19.2]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.1...v0.19.2
[0.19.1]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.5...v0.19.0

10
Cargo.lock generated
View file

@ -330,7 +330,7 @@ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
[[package]]
name = "cobalt-bin"
version = "0.19.2"
version = "0.19.3"
dependencies = [
"anstream 0.6.13",
"anyhow",
@ -381,7 +381,7 @@ dependencies = [
[[package]]
name = "cobalt-config"
version = "0.19.1"
version = "0.19.2"
dependencies = [
"deunicode",
"itertools 0.12.0",
@ -398,7 +398,7 @@ dependencies = [
[[package]]
name = "cobalt-core"
version = "0.19.1"
version = "0.19.2"
dependencies = [
"cobalt-config",
"ignore",
@ -651,7 +651,7 @@ dependencies = [
[[package]]
name = "engarde"
version = "0.1.7"
version = "0.1.8"
dependencies = [
"syntect",
]
@ -735,7 +735,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]]
name = "file-serve"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"log",
"mime_guess",

View file

@ -22,7 +22,7 @@ include = [
[package]
name = "cobalt-bin"
version = "0.19.2"
version = "0.19.3"
description = "Static site generator written in Rust"
readme = "README.md"
categories = ["command-line-utilities"]
@ -65,8 +65,8 @@ name = "cobalt"
doc = false
[dependencies]
cobalt-config = { version = "=0.19.1", path = "crates/config", features = ["unstable"] }
cobalt-core = { version = "=0.19.1", path = "crates/core", features = ["unstable"] }
cobalt-config = { version = "=0.19.2", path = "crates/config", features = ["unstable"] }
cobalt-core = { version = "=0.19.2", path = "crates/core", features = ["unstable"] }
clap = { version = "4.5", features = ["derive", "wrap_help"] }
clap-verbosity-flag = "2.2"
proc-exit = "2"
@ -102,7 +102,7 @@ sitemap = "0.4"
open = "5"
dunce = "1.0.4"
file-serve = { version = "0.3.1", path = "crates/file-serve", optional = true }
file-serve = { version = "0.3.2", path = "crates/file-serve", optional = true }
notify = { version = "6", optional = true, default-features = false, features = ["macos_fsevent"] }
sass-rs = { version = "0.2", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "cobalt-config"
version = "0.19.1"
version = "0.19.2"
description = "Static site generator written in Rust"
readme = "../../README.md"
keywords = ["static", "site", "generator"]

View file

@ -1,6 +1,6 @@
[package]
name = "cobalt-core"
version = "0.19.1"
version = "0.19.2"
description = "Static site generator written in Rust"
readme = "../../README.md"
keywords = ["static", "site", "generator"]
@ -20,7 +20,7 @@ unstable = []
preview_unstable = []
[dependencies]
cobalt-config = { version = "=0.19.1", path = "..//config", features = ["unstable"] }
cobalt-config = { version = "=0.19.2", path = "..//config", features = ["unstable"] }
ignore = "0.4"
walkdir = "2.5"
liquid-core = "0.26"

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.1.8] - 2024-04-15
## [0.1.7] - 2024-02-28
### Compatibility
@ -34,7 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.1] - 2022-04-04
<!-- next-url -->
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.7...HEAD
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.8...HEAD
[0.1.8]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.7...engarde-v0.1.8
[0.1.7]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.6...engarde-v0.1.7
[0.1.6]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.5...engarde-v0.1.6
[0.1.5]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.4...engarde-v0.1.5

View file

@ -1,6 +1,6 @@
[package]
name = "engarde"
version = "0.1.7"
version = "0.1.8"
description = "Fenced Code Formatting"
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/engarde"
documentation = "http://docs.rs/engarde"

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.3.2] - 2024-04-15
## [0.3.1] - 2024-02-28
### Compatibility
@ -48,7 +50,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.1] - 2022-04-04
<!-- next-url -->
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.1...HEAD
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.2...HEAD
[0.3.2]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.1...file-serve-v0.3.2
[0.3.1]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.0...file-serve-v0.3.1
[0.3.0]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.4...file-serve-v0.3.0
[0.2.4]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.3...file-serve-v0.2.4

View file

@ -1,6 +1,6 @@
[package]
name = "file-serve"
version = "0.3.1"
version = "0.3.2"
description = "HTTP Static File Server"
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/file-serve"
documentation = "http://docs.rs/file-serve"