Skip to content

Commit

Permalink
Release yash-syntax-0.10.0 and yash-env-0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
magicant committed Jul 12, 2024
1 parent 97fe0f4 commit dd11c2f
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 13 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.

5 changes: 3 additions & 2 deletions yash-builtin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ All notable changes to `yash-builtin` 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.2.1] - Unreleased
## [0.3.0] - Unreleased

### Changed

- External dependency versions:
- Rust 1.75.0 → 1.77.0
- yash-syntax 0.9.0 → 0.10.0

### Fixed

Expand Down Expand Up @@ -77,6 +78,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial implementation of the `yash-builtin` crate

[0.2.1]: https://github.com/magicant/yash-rs/releases/tag/yash-builtin-0.2.1
[0.3.0]: https://github.com/magicant/yash-rs/releases/tag/yash-builtin-0.3.0
[0.2.0]: https://github.com/magicant/yash-rs/releases/tag/yash-builtin-0.2.0
[0.1.0]: https://github.com/magicant/yash-rs/releases/tag/yash-builtin-0.1.0
2 changes: 1 addition & 1 deletion yash-builtin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ yash-env = { path = "../yash-env", version = "0.2.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.2.0", optional = true }
yash-syntax = { path = "../yash-syntax", version = "0.9.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
2 changes: 2 additions & 0 deletions yash-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- External dependency versions:
- Rust 1.75.0 → 1.77.0
- Internal dependency versions:
- yash-syntax 0.9.0 → 0.10.0
- The shell now shows the prompt before reading the input in the interactive mode.
To achieve this, the `startup::prepare_input` function now applies the
`yash_prompt::Prompter` decorator to the returned source input.
Expand Down
2 changes: 1 addition & 1 deletion yash-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ yash-builtin = { path = "../yash-builtin", version = "0.2.0" }
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-prompt = { path = "../yash-prompt", version = "0.1.0" }
yash-semantics = { path = "../yash-semantics", version = "0.2.0" }
yash-syntax = { path = "../yash-syntax", version = "0.9.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.0" }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
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.2.1] - Unreleased
## [0.2.1] - 2024-07-12

### Added

Expand All @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- External dependency versions:
- Rust 1.70.0 → 1.77.0
- yash-syntax 0.9.0 → 0.10.0
- Internal dependency versions:
- annotate-snippets 0.10.0 → 0.11.4
- All inherent methods of `SharedSystem` now take `&self` instead of `&mut self`:
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.0"
version = "0.2.1"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
edition = "2021"
rust-version = "1.77.0"
Expand All @@ -26,7 +26,7 @@ strum = { version = "0.26.2", features = ["derive"] }
tempfile = "3.8.0"
thiserror = "1.0.47"
yash-quote = { path = "../yash-quote", version = "1.1.1" }
yash-syntax = { path = "../yash-syntax", version = "0.9.0", features = ["annotate-snippets"] }
yash-syntax = { path = "../yash-syntax", version = "0.10.0", features = ["annotate-snippets"] }

[dev-dependencies]
assert_matches = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion yash-prompt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async-trait = "0.1.73"
futures-util = "0.3.28"
yash-env = { path = "../yash-env", version = "0.2.0" }
yash-semantics = { path = "../yash-semantics", version = "0.2.0" }
yash-syntax = { path = "../yash-syntax", version = "0.9.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.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 @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- External dependency versions:
- Rust 1.75.0 → 1.77.0
- yash-syntax 0.9.0 → 0.10.0

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion yash-semantics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ yash-arith = { path = "../yash-arith", version = "0.2.1" }
yash-env = { path = "../yash-env", version = "0.2.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.9.0" }
yash-syntax = { path = "../yash-syntax", version = "0.10.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.10.0] - Unreleased
## [0.10.0] - 2024-07-12

### 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.9.0"
version = "0.10.0"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
edition = "2021"
rust-version = "1.77.0"
Expand Down

0 comments on commit dd11c2f

Please sign in to comment.