Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update versions for 0.12.0 #359

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading