diff --git a/codespan-lsp/CHANGELOG.md b/codespan-lsp/CHANGELOG.md index 71c6cfa8..650b5293 100644 --- a/codespan-lsp/CHANGELOG.md +++ b/codespan-lsp/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2024-02-10 + The minimum supported rustc version is now `1.46.0` (was `1.40.0`). This is because some dependencies now require this Rust version. @@ -89,7 +91,8 @@ and a [contributing guide](https://github.com/brendanzab/codespan/blob/master/CO ## [0.2.1] - 2019-02-26 ## [0.2.0] - 2018-10-11 -[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.11.1...HEAD +[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/brendanzab/codespan/compare/v0.11.1..v0.12.0 [0.11.1]: https://github.com/brendanzab/codespan/compare/v0.11.0..v0.11.1 [0.11.0]: https://github.com/brendanzab/codespan/compare/v0.10.1..v0.11.0 [0.10.1]: https://github.com/brendanzab/codespan/compare/v0.10.0..v0.10.1 diff --git a/codespan-lsp/Cargo.toml b/codespan-lsp/Cargo.toml index c1a8ff07..572b2644 100644 --- a/codespan-lsp/Cargo.toml +++ b/codespan-lsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codespan-lsp" -version = "0.11.1" +version = "0.12.0" license = "Apache-2.0" authors = ["Markus Westerlind "] description = "Conversions between codespan types and Language Server Protocol types" @@ -10,7 +10,7 @@ documentation = "https://docs.rs/codespan-lsp" edition = "2018" [dependencies] -codespan-reporting = { version = "0.11.1", path = "../codespan-reporting" } +codespan-reporting = { version = "0.12.0", path = "../codespan-reporting" } # WARNING: Be extremely careful when expanding this version range. # We should be confident that all of the uses of `lsp-types` in `codespan-lsp` # will be valid for all the versions in this range. Getting this range wrong diff --git a/codespan-reporting/CHANGELOG.md b/codespan-reporting/CHANGELOG.md index 14c47660..bbefab74 100644 --- a/codespan-reporting/CHANGELOG.md +++ b/codespan-reporting/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2024-02-10 + The minimum supported rustc version is now `1.46.0` (was `1.40.0`). This is because some testing dependencies now require this Rust version. @@ -446,7 +448,8 @@ process has been changed so this should not happen again. ## [0.2.1] - 2019-02-26 ## [0.2.0] - 2018-10-11 -[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.11.1...HEAD +[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/brendanzab/codespan/compare/v0.11.1..v0.12.0 [0.11.1]: https://github.com/brendanzab/codespan/compare/v0.11.0..v0.11.1 [0.11.0]: https://github.com/brendanzab/codespan/compare/v0.9.5...v0.11.0 [0.9.5]: https://github.com/brendanzab/codespan/compare/v0.9.4...v0.9.5 diff --git a/codespan-reporting/Cargo.toml b/codespan-reporting/Cargo.toml index 91b91c7c..af158f98 100644 --- a/codespan-reporting/Cargo.toml +++ b/codespan-reporting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codespan-reporting" -version = "0.11.1" +version = "0.12.0" readme = "../README.md" license = "Apache-2.0" authors = ["Brendan Zabarauskas "] diff --git a/codespan/CHANGELOG.md b/codespan/CHANGELOG.md index 417e156c..d23d25d5 100644 --- a/codespan/CHANGELOG.md +++ b/codespan/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2024-02-10 + The minimum supported rustc version is now `1.46.0` (was `1.40.0`). This is because dependencies of `codespan-lsp` now require this Rust version. @@ -67,7 +69,8 @@ process has been changed so this should not happen again. ## [0.2.1] - 2019-02-26 ## [0.2.0] - 2018-10-11 -[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.11.1...HEAD +[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/brendanzab/codespan/compare/v0.11.1..v0.12.0 [0.11.1]: https://github.com/brendanzab/codespan/compare/v0.11.0..v0.11.1 [0.11.0]: https://github.com/brendanzab/codespan/compare/v0.9.5...v0.11.0 [0.9.5]: https://github.com/brendanzab/codespan/compare/v0.9.4...v0.9.5 diff --git a/codespan/Cargo.toml b/codespan/Cargo.toml index 75a41cdb..d99d862e 100644 --- a/codespan/Cargo.toml +++ b/codespan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codespan" -version = "0.11.1" +version = "0.12.0" readme = "README.md" license = "Apache-2.0" authors = ["Brendan Zabarauskas "] @@ -11,7 +11,7 @@ documentation = "https://docs.rs/codespan" edition = "2018" [dependencies] -codespan-reporting = { path = "../codespan-reporting", version = "0.11.1" } +codespan-reporting = { path = "../codespan-reporting", version = "0.12.0" } serde = { version = "1", optional = true, features = ["derive"]} [dev-dependencies]