mirror of
https://github.com/cobalt-org/cobalt.rs
synced 2024-11-10 06:14:12 +00:00
chore: Release
This commit is contained in:
parent
4ed47038a1
commit
17ad0190e1
9 changed files with 26 additions and 17 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [0.19.5] - 2024-07-05
|
||||
|
||||
### Fixes
|
||||
|
||||
- *(build)* List correct default for `--destination`
|
||||
|
@ -713,7 +715,8 @@ this.
|
|||
[@tak1n]: https://github.com/tak1n
|
||||
|
||||
<!-- next-url -->
|
||||
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.4...HEAD
|
||||
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.5...HEAD
|
||||
[0.19.5]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.4...v0.19.5
|
||||
[0.19.4]: https://github.com/cobalt-org/cobalt.rs/compare/v0.19.3...v0.19.4
|
||||
[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
|
||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -308,7 +308,7 @@ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
|||
|
||||
[[package]]
|
||||
name = "cobalt-bin"
|
||||
version = "0.19.4"
|
||||
version = "0.19.5"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
@ -359,7 +359,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "cobalt-config"
|
||||
version = "0.19.3"
|
||||
version = "0.19.4"
|
||||
dependencies = [
|
||||
"deunicode",
|
||||
"itertools 0.13.0",
|
||||
|
@ -376,7 +376,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "cobalt-core"
|
||||
version = "0.19.3"
|
||||
version = "0.19.4"
|
||||
dependencies = [
|
||||
"cobalt-config",
|
||||
"ignore",
|
||||
|
@ -695,7 +695,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "engarde"
|
||||
version = "0.1.9"
|
||||
version = "0.1.10"
|
||||
dependencies = [
|
||||
"syntect",
|
||||
]
|
||||
|
@ -779,7 +779,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|||
|
||||
[[package]]
|
||||
name = "file-serve"
|
||||
version = "0.3.3"
|
||||
version = "0.3.4"
|
||||
dependencies = [
|
||||
"log",
|
||||
"mime_guess",
|
||||
|
|
|
@ -90,7 +90,7 @@ assigning_clones = "allow" # TODO
|
|||
|
||||
[package]
|
||||
name = "cobalt-bin"
|
||||
version = "0.19.4"
|
||||
version = "0.19.5"
|
||||
description = "Static site generator written in Rust"
|
||||
readme = "README.md"
|
||||
categories = ["command-line-utilities"]
|
||||
|
@ -133,8 +133,8 @@ name = "cobalt"
|
|||
doc = false
|
||||
|
||||
[dependencies]
|
||||
cobalt-config = { version = "=0.19.3", path = "crates/config", features = ["unstable"] }
|
||||
cobalt-core = { version = "=0.19.3", path = "crates/core", features = ["unstable"] }
|
||||
cobalt-config = { version = "=0.19.4", path = "crates/config", features = ["unstable"] }
|
||||
cobalt-core = { version = "=0.19.4", path = "crates/core", features = ["unstable"] }
|
||||
clap = { version = "4.5", features = ["derive", "wrap_help"] }
|
||||
clap-verbosity-flag = "2.2"
|
||||
proc-exit = "2"
|
||||
|
@ -170,7 +170,7 @@ sitemap = "0.4"
|
|||
open = "5"
|
||||
dunce = "1.0.4"
|
||||
|
||||
file-serve = { version = "0.3.3", path = "crates/file-serve", optional = true }
|
||||
file-serve = { version = "0.3.4", path = "crates/file-serve", optional = true }
|
||||
notify = { version = "6", optional = true, default-features = false, features = ["macos_fsevent"] }
|
||||
|
||||
sass-rs = { version = "0.2", optional = true }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cobalt-config"
|
||||
version = "0.19.3"
|
||||
version = "0.19.4"
|
||||
description = "Static site generator written in Rust"
|
||||
readme = "../../README.md"
|
||||
keywords = ["static", "site", "generator"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "cobalt-core"
|
||||
version = "0.19.3"
|
||||
version = "0.19.4"
|
||||
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.3", path = "..//config", features = ["unstable"] }
|
||||
cobalt-config = { version = "=0.19.4", path = "..//config", features = ["unstable"] }
|
||||
ignore = "0.4"
|
||||
walkdir = "2.5"
|
||||
liquid-core = "0.26"
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [0.1.10] - 2024-07-05
|
||||
|
||||
## [0.1.9] - 2024-07-05
|
||||
|
||||
### Fixes
|
||||
|
@ -46,7 +48,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.9...HEAD
|
||||
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.10...HEAD
|
||||
[0.1.10]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.9...engarde-v0.1.10
|
||||
[0.1.9]: https://github.com/cobalt-org/cobalt.rs/compare/engarde-v0.1.8...engarde-v0.1.9
|
||||
[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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "engarde"
|
||||
version = "0.1.9"
|
||||
version = "0.1.10"
|
||||
description = "Fenced Code Formatting"
|
||||
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/engarde"
|
||||
documentation = "http://docs.rs/engarde"
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [0.3.4] - 2024-07-05
|
||||
|
||||
## [0.3.3] - 2024-07-05
|
||||
|
||||
### Compatibility
|
||||
|
@ -56,7 +58,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.3...HEAD
|
||||
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.4...HEAD
|
||||
[0.3.4]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.3...file-serve-v0.3.4
|
||||
[0.3.3]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.3.2...file-serve-v0.3.3
|
||||
[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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "file-serve"
|
||||
version = "0.3.3"
|
||||
version = "0.3.4"
|
||||
description = "HTTP Static File Server"
|
||||
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/file-serve"
|
||||
documentation = "http://docs.rs/file-serve"
|
||||
|
|
Loading…
Reference in a new issue