Skip to content

Commit

Permalink
update versions for 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann150 committed Feb 9, 2024
1 parent ce6d0bb commit 8d7d43a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
5 changes: 4 additions & 1 deletion codespan-lsp/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](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.

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions codespan-lsp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codespan-lsp"
version = "0.11.1"
version = "0.12.0"
license = "Apache-2.0"
authors = ["Markus Westerlind <marwes91@gmail.com>"]
description = "Conversions between codespan types and Language Server Protocol types"
Expand All @@ -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
Expand Down
5 changes: 4 additions & 1 deletion codespan-reporting/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](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.

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion codespan-reporting/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <bjzaba@yahoo.com.au>"]
Expand Down
5 changes: 4 additions & 1 deletion codespan/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](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.

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions codespan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <bjzaba@yahoo.com.au>"]
Expand All @@ -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]
Expand Down

0 comments on commit 8d7d43a

Please sign in to comment.