From 71f62d8a0a6cae637a30948740b095d01df5ec71 Mon Sep 17 00:00:00 2001 From: Austin Henriksen Date: Wed, 27 Mar 2024 13:24:15 -0400 Subject: [PATCH] Updated changelog, dependencies, and version to '0.3.1'. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45021a2d..63eb67b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.3.1] - 2024-3-27 +### Enhancements +- Input files are now loaded and parsed in the order they're passed ([694]). + ## [0.3.0] - 2024-2-7 ### Added - Added a new built-in generic type: `Result` ([687]). @@ -47,6 +51,7 @@ ## [0.1.0] - 2023-9-6 Initial public release! +[694]: https://github.com/icerpc/slicec/pull/694 [689]: https://github.com/icerpc/slicec/pull/689 [688]: https://github.com/icerpc/slicec/pull/688 [687]: https://github.com/icerpc/slicec/pull/687 @@ -62,6 +67,7 @@ Initial public release! [662]: https://github.com/icerpc/slicec/pull/662 [659]: https://github.com/icerpc/slicec/pull/659 +[0.3.1]: https://github.com/icerpc/slicec/releases/tag/v0.3.1 [0.3.0]: https://github.com/icerpc/slicec/releases/tag/v0.3.0 [0.2.1]: https://github.com/icerpc/slicec/releases/tag/v0.2.1 [0.2.0]: https://github.com/icerpc/slicec/releases/tag/v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index b2640c6f..bd5235af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slicec" -version = "0.3.0" +version = "0.3.1" authors = ["ZeroC Inc."] description = """ The Slice parser and other core components for Slice compilers. @@ -17,18 +17,18 @@ exclude = [".github/*", ".vscode/*"] [dependencies] # derive feature allows structs to derive Parser automatically -clap = { version = "4.3.15", features = ["derive"] } +clap = { version = "=4.3.20", features = ["derive"] } console = "0.15.8" convert_case = "0.6.0" in_definite = "1.0.0" -lalrpop-util = "0.20.0" +lalrpop-util = "0.20.2" # derive feature allows structs to derive Serialize automatically -serde = { version = "1.0.196", features = ["derive"] } -serde_json = "1.0.113" +serde = { version = "1.0.197", features = ["derive"] } +serde_json = "1.0.115" [build-dependencies] # The default features enable a built-in lexer. We supply our own lexer so we don't need these. -lalrpop = { version = "0.20.0", default-features = false } +lalrpop = { version = "0.20.2", default-features = false } [dev-dependencies] test-case = "3.3.1"