Skip to content

Releases v1.2.0 #1747

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

Merged
merged 1 commit into from
Mar 12, 2025
Merged
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
25 changes: 10 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,19 @@
- [Closes/Related To] Issue #XXX

## Description
- < A detailed description >
- < Explain >
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the changes here!


## Other Information
- Updated Unreleased Section in CHANGELOG: **[YES/NO]**
- < If NO, why? >
- Updated Unreleased Section in CHANGELOG: **[YES/NO]**: <Explain if NO>
- Any backward-incompatible changes? **[YES/NO]**: <Explain if YES>
- Any new external dependencies? **[YES/NO]**: <Explain if YES>
- Do your changes comply with the [contributing][cg] and [code style][csg] guidelines? **[YES/NO]**

- Any backward-incompatible changes? **[YES/NO]**
- < If YES, why? >
- < For this purpose, we define backward-incompatible changes as changes that—when consumed—can potentially result in
errors for users that are using our public APIs or the entities that have `public` visibility in our code-base. >

- Any new external dependencies? **[YES/NO]**
- < If YES, which ones and why? >
- < In addition, please also mention any other alternatives you've considered and the reason they've been discarded >
## License Information

- Do your changes comply with the [Contributing Guidelines](https://github.com/partiql/partiql-lang-kotlin/blob/main/CONTRIBUTING.md)
and [Code Style Guidelines](https://github.com/partiql/partiql-lang-kotlin/blob/main/CODE_STYLE.md)? **[YES/NO]**
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

## License Information
<!-- DO NOT DELETE BELOW -->

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
[cg]: https://github.com/partiql/partiql-lang-kotlin/blob/main/CONTRIBUTING.md
[csg]: https://github.com/partiql/partiql-lang-kotlin/blob/main/CODE_STYLE.md
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- Template: after a release, copy and paste out below
## [Unreleased] - YYYY-MM-DD
## [Unreleased](https://TODO.com) - YYYY-MM-DD

### Added

Expand All @@ -25,9 +25,27 @@ Thank you to all who have contributed!

## [Unreleased](https://TODO.com) - YYYY-MM-DD

### Added

### Changed

### Deprecated

### Fixed

### Removed

### Security

### Contributors
Thank you to all who have contributed!

## [1.2.0](https://github.com/partiql/partiql-lang-kotlin/releases/tag/v1.2.0) - 2025-03-12

### Added
- Added parsing, planning, and execution of the interval type and interval values.
- Added multiple operations involving datetime and interval values.
- Added planning and evaluation of the LET clause

### Changed

Expand All @@ -43,6 +61,8 @@ Thank you to all who have contributed!

Thank you to all who have contributed!
- @johnedquinn
- @lucaxchen
- @mrugeshgharat

## [1.1.0](https://github.com/partiql/partiql-lang-kotlin/releases/tag/v1.1.0) - 2025-02-14

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.partiql
version=1.2.0-SNAPSHOT
version=1.2.0

ossrhUsername=EMPTY
ossrhPassword=EMPTY
Expand Down
Loading