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

chore: Release v0.10.1 #483

Open
wants to merge 1 commit into
base: main
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
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Changed

### Added

### Fixed

## [0.10.1]
### Changed
- partiql-ast: fixed pretty-printing of `PIVOT`
- partiql-ast: improved pretty-printing of `CASE` and various clauses
-

### Added

### Fixed
Expand Down Expand Up @@ -59,7 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

### Fixed
- partiql-types: Fixed handling of struct fields to be resilient to field order w.r.t. equality and hashing
- partiql-types: Fixed handling of struct fields to be resilient to field order w.r.t. equality and hashing

## [0.7.1] - 2024-03-15
### Changed
Expand All @@ -74,12 +81,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Adds quotes to the attributes of PartiQL tuple's debug output so it can be read and transformed using Kotlin `partiql-cli`
- *BREAKING:* partiql-eval: Changes the interface to `EvalPlan` to accept an `EvalContext`
- *BREAKING:* partiql-eval: Changes `EvaluationError` to not implement `Clone`
- *BREAKING:* partiql-eval: Changes `EvaluationError` to not implement `Clone`
- *BREAKING:* partiql-eval: Changes the structure of `EvalPlan`

### Added
- partiql-extension-visualize: Add `partiql-extension-visualize` for visualizing AST and logical plan
- partiql-eval: Add a `SessionContext` containing both a system-level and a user-level context object usable by expression evaluation
- partiql-eval: Add a `SessionContext` containing both a system-level and a user-level context object usable by expression evaluation

### Fixed
- partiql-logical-planner: Fixed `ORDER BY`'s ability to see into projection aliases
Expand Down Expand Up @@ -276,7 +283,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- PartiQL Playground proof of concept (POC)
- PartiQL CLI with REPL and query visualization features

[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.10.0...HEAD
[Unreleased]: https://github.com/partiql/partiql-lang-rust/compare/v0.10.1...HEAD
[0.10.1]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.10.1
[0.10.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.10.0
[0.9.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.9.0
[0.8.0]: https://github.com/partiql/partiql-lang-rust/releases/tag/v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["PartiQL Team <[email protected]>"]
homepage = "https://github.com/partiql/partiql-lang-rust"
repository = "https://github.com/partiql/partiql-lang-rust"
version = "0.10.0"
version = "0.10.1"
edition = "2021"

[workspace]
Expand Down
Loading