Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 2, 2023
1 parent 50955d6 commit 9533355
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.18.5] - 2023-06-02

### Fixes

- Include frontmatter tags in jsonfeed
Expand Down Expand Up @@ -674,7 +676,8 @@ this.
[@tak1n]: https://github.com/tak1n

<!-- next-url -->
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.4...HEAD
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.5...HEAD
[0.18.5]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.4...v0.18.5
[0.18.4]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.3...v0.18.4
[0.18.3]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.2...v0.18.3
[0.18.2]: https://github.com/cobalt-org/cobalt.rs/compare/v0.18.1...v0.18.2
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ include = [

[package]
name = "cobalt-bin"
version = "0.18.4"
version = "0.18.5"
description = "Static site generator written in Rust"
readme = "README.md"
categories = ["command-line-utilities"]
Expand Down Expand Up @@ -60,8 +60,8 @@ name = "cobalt"
doc = false

[dependencies]
cobalt-config = { version = "=0.18.2", path = "crates/config", features = ["unstable"] }
cobalt-core = { version = "=0.18.2", path = "crates/core", features = ["unstable"] }
cobalt-config = { version = "=0.18.3", path = "crates/config", features = ["unstable"] }
cobalt-core = { version = "=0.18.3", path = "crates/core", features = ["unstable"] }
clap = { version = "4.3", features = ["derive", "wrap_help"] }
clap-verbosity-flag = "2.0"
proc-exit = "2"
Expand Down Expand Up @@ -98,7 +98,7 @@ open = "4"
dunce = "1.0.4"
vimwiki = { version = "0.1", features = ["html"] }

file-serve = { version = "0.2.2", path = "crates/file-serve", optional = true }
file-serve = { version = "0.2.3", path = "crates/file-serve", optional = true }
notify = { version = "6", optional = true, default-features = false, features = ["macos_fsevent"] }

sass-rs = { version = "0.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cobalt-config"
version = "0.18.2"
version = "0.18.3"
description = "Static site generator written in Rust"
readme = "../../README.md"
keywords = ["static", "site", "generator"]
Expand Down
4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cobalt-core"
version = "0.18.2"
version = "0.18.3"
description = "Static site generator written in Rust"
readme = "../../README.md"
keywords = ["static", "site", "generator"]
Expand All @@ -16,7 +16,7 @@ unstable = []
preview_unstable = []

[dependencies]
cobalt-config = { version = "=0.18.2", path = "..//config", features = ["unstable"] }
cobalt-config = { version = "=0.18.3", path = "..//config", features = ["unstable"] }
ignore = "0.4"
walkdir = "2.3"
liquid-core = "0.26"
Expand Down
5 changes: 4 additions & 1 deletion crates/file-serve/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.2.3] - 2023-06-02

## [0.2.2] - 2023-04-20

### Compatibility
Expand All @@ -24,7 +26,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.2.2...HEAD
[Unreleased]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.3...HEAD
[0.2.3]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.2...file-serve-v0.2.3
[0.2.2]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.1...file-serve-v0.2.2
[0.2.1]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.2.0...file-serve-v0.2.1
[0.2.0]: https://github.com/cobalt-org/cobalt.rs/compare/file-serve-v0.1.1...file-serve-v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion crates/file-serve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "file-serve"
version = "0.2.2"
version = "0.2.3"
description = "HTTP Static File Server"
homepage = "https://github.com/cobalt-org/cobalt.rs/tree/master/crates/file-serve"
documentation = "http://docs.rs/file-serve"
Expand Down

0 comments on commit 9533355

Please sign in to comment.