Skip to content

Commit

Permalink
Release yash-syntax 0.11.0 & yash-env 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
magicant committed Aug 22, 2024
1 parent d86a9fb commit 744dbfb
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions yash-builtin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
a function that returns an error of type `Errno` instead of `std::io::Error`.
- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-env 0.2.0 → 0.3.0
- yash-syntax 0.10.0 → 0.11.0

## [0.3.0] - 2024-07-13

Expand Down
4 changes: 2 additions & 2 deletions yash-builtin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ either = "1.9.0"
enumset = { version = "1.1.2", optional = true }
itertools = "0.13.0"
thiserror = "1.0.47"
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.3.0" }
yash-prompt = { path = "../yash-prompt", version = "0.1.0", optional = true }
yash-quote = { path = "../yash-quote", version = "1.1.1" }
yash-semantics = { path = "../yash-semantics", version = "0.3.0", optional = true }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }
yash-syntax = { path = "../yash-syntax", version = "0.11.0" }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
2 changes: 2 additions & 0 deletions yash-cli/CHANGELOG-lib.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
`!`.
- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-env 0.2.0 → 0.3.0
- yash-syntax 0.10.0 → 0.11.0

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions yash-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ futures-executor = "0.3.28"
futures-util = { version = "0.3.28", features = ["channel"] }
thiserror = "1.0.47"
yash-builtin = { path = "../yash-builtin", version = "0.3.0" }
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.3.0" }
yash-prompt = { path = "../yash-prompt", version = "0.1.0" }
yash-semantics = { path = "../yash-semantics", version = "0.3.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }
yash-syntax = { path = "../yash-syntax", version = "0.11.0" }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
1 change: 1 addition & 0 deletions yash-env-test-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-env 0.2.0 → 0.3.0

## [0.1.0] - 2024-07-12

Expand Down
2 changes: 1 addition & 1 deletion yash-env-test-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ categories = ["command-line-utilities"]
assert_matches = "1.5.0"
futures-executor = "0.3.28"
futures-util = { version = "0.3.28", features = ["channel"] }
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.3.0" }
3 changes: 2 additions & 1 deletion yash-env/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to `yash-env` will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - Unreleased
## [0.3.0] - 2024-08-22

### Added

Expand Down Expand Up @@ -108,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
cases.
- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-syntax 0.10.0 → 0.11.0

### Deprecated

Expand Down
4 changes: 2 additions & 2 deletions yash-env/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yash-env"
version = "0.2.1"
version = "0.3.0"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
edition = "2021"
rust-version = "1.79.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ thiserror = "1.0.47"
unix_path = "1.0.1"
unix_str = "1.0.0"
yash-quote = { path = "../yash-quote", version = "1.1.1" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0", features = ["annotate-snippets"] }
yash-syntax = { path = "../yash-syntax", version = "0.11.0", features = ["annotate-snippets"] }

[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["fs", "signal", "user"] }
Expand Down
2 changes: 2 additions & 0 deletions yash-prompt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-env 0.2.0 → 0.3.0
- yash-syntax 0.10.0 → 0.11.0

## [0.1.0] - 2024-07-13

Expand Down
4 changes: 2 additions & 2 deletions yash-prompt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ categories = ["command-line-utilities"]
[dependencies]
async-trait = "0.1.73"
futures-util = "0.3.28"
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.3.0" }
yash-semantics = { path = "../yash-semantics", version = "0.3.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }
yash-syntax = { path = "../yash-syntax", version = "0.11.0" }

[dev-dependencies]
yash-env-test-helper = { path = "../yash-env-test-helper", version = "0.1.0" }
1 change: 1 addition & 0 deletions yash-semantics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
with `Vacancy` information.
- External dependency versions:
- Rust 1.77.0 → 1.79.0
- yash-env 0.2.0 → 0.3.0
- yash-syntax 0.10.0 → 0.11.0

## [0.3.0] - 2024-07-13
Expand Down
4 changes: 2 additions & 2 deletions yash-semantics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ enumset = "1.1.2"
itertools = "0.13.0"
thiserror = "1.0.47"
yash-arith = { path = "../yash-arith", version = "0.2.1" }
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.3.0" }
yash-fnmatch = { path = "../yash-fnmatch", version = "1.1.1" }
yash-quote = { path = "../yash-quote", version = "1.1.1" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }
yash-syntax = { path = "../yash-syntax", version = "0.11.0" }

[dev-dependencies]
futures-executor = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion yash-syntax/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to `yash-syntax` will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.0] - Unreleased
## [0.11.0] - 2024-08-22

### Added

Expand Down
2 changes: 1 addition & 1 deletion yash-syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yash-syntax"
version = "0.10.0"
version = "0.11.0"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
edition = "2021"
rust-version = "1.79.0"
Expand Down

0 comments on commit 744dbfb

Please sign in to comment.