diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9cc2a9..d357ca9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.18.0] - 2022-06-15 + ### Compatibility - `cobalt import` was dropped (#969) @@ -635,7 +637,8 @@ this. [@tak1n]: https://github.com/tak1n -[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.17.5...HEAD +[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.0...HEAD +[0.18.0]: https://github.com/cobalt-org/cobalt.rs/compare/v0.17.5...v0.18.0 [0.17.5]: https://github.com/cobalt-org/cobalt.rs/compare/v0.17.4...v0.17.5 [0.17.4]: https://github.com/cobalt-org/cobalt.rs/compare/v0.17.3...v0.17.4 [0.17.3]: https://github.com/cobalt-org/cobalt.rs/compare/v0.17.2...v0.17.3 diff --git a/Cargo.lock b/Cargo.lock index 6dba77fc..f6cb8b5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "cobalt-bin" -version = "0.17.5" +version = "0.18.0" dependencies = [ "clap", "clap-verbosity-flag", @@ -340,7 +340,7 @@ dependencies = [ [[package]] name = "cobalt-config" -version = "0.17.0" +version = "0.18.0" dependencies = [ "deunicode", "itertools", @@ -357,7 +357,7 @@ dependencies = [ [[package]] name = "cobalt-core" -version = "0.17.0" +version = "0.18.0" dependencies = [ "cobalt-config", "ignore", diff --git a/Cargo.toml b/Cargo.toml index 25c37cfc..48de8049 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "cobalt-bin" -version = "0.17.5" +version = "0.18.0" description = "Static site generator written in Rust" authors = ["Benny Klotz ", "Johann Hofmann ", "Ed Page "] repository = "https://github.com/cobalt-org/cobalt.rs" @@ -44,8 +44,8 @@ name = "cobalt" doc = false [dependencies] -cobalt-config = { version = "=0.17.0", path = "crates/config", features = ["unstable"] } -cobalt-core = { version = "=0.17.0", path = "crates/core", features = ["unstable"] } +cobalt-config = { version = "=0.18.0", path = "crates/config", features = ["unstable"] } +cobalt-core = { version = "=0.18.0", path = "crates/core", features = ["unstable"] } clap = { version = "3.1", features = ["derive"] } clap-verbosity-flag = "1.0" proc-exit = "1" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index b86b7cbe..0e1755e9 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cobalt-config" -version = "0.17.0" +version = "0.18.0" authors = ["Ed Page "] description = "Static site generator written in Rust" repository = "https://github.com/cobalt-org/cobalt.rs" diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 19f8f9bd..d6aba889 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cobalt-core" -version = "0.17.0" +version = "0.18.0" authors = ["Ed Page "] description = "Static site generator written in Rust" repository = "https://github.com/cobalt-org/cobalt.rs" @@ -15,7 +15,7 @@ unstable = [] preview_unstable = [] [dependencies] -cobalt-config = { version = "=0.17.0", path = "..//config", features = ["unstable"] } +cobalt-config = { version = "=0.18.0", path = "..//config", features = ["unstable"] } ignore = "0.4" walkdir = "2.2" liquid-core = "0.26"