Skip to content

Commit

Permalink
Updated changelog, dependencies, and version to '0.3.1'.
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere committed Mar 27, 2024
1 parent 4223369 commit 71f62d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<S, F>` ([687]).
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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"
Expand Down

0 comments on commit 71f62d8

Please sign in to comment.