Skip to content

Commit b651415

Browse files
authored
Releases v1.0.0-rc.3 (#1676)
1 parent 94d2392 commit b651415

File tree

3 files changed

+28
-51
lines changed

3 files changed

+28
-51
lines changed

CHANGELOG.md

Lines changed: 25 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
<!-- Template: after a release, copy and paste out below
8-
## [Unreleased]
8+
## [Unreleased] - YYYY-MM-DD
99
1010
### Added
1111
@@ -23,64 +23,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
Thank you to all who have contributed!
2424
-->
2525

26-
## [1.0.0-rc.2]
26+
## [1.0.0-rc.3] - 2024-12-10
2727

28-
### Added
29-
30-
### Changed
31-
32-
### Deprecated
28+
Thank you to all who have contributed!
3329

34-
### Fixed
30+
## [1.0.0-rc.2] - 2024-11-04
3531

36-
### Removed
32+
Thank you to all who have contributed!
3733

38-
### Security
34+
## [1.0.0-rc.1] - 2024-10-02
3935

40-
### Contributors
4136
Thank you to all who have contributed!
4237

43-
## [1.0.0-rc.1]
44-
45-
### Added
38+
## [0.14.9] - 2024-09-26
4639

4740
### Changed
41+
- With full, closed schema, the planner will now give a plan-time warning when it can prove an exclude path will never
42+
exclude a value (relevant issue -- https://github.com/partiql/partiql-lang/issues/91).
4843

49-
### Deprecated
50-
51-
### Fixed
52-
53-
### Removed
54-
55-
### Security
44+
### Experimental Changes
45+
- **BREAKING**: For the _experimental_ `org.partiql.lang.domains` of `PartiqlLogical`, `PartiqlLogicalResolved`, and `PartiqlPhysical`,
46+
the modeling of DML has changed substantially. These changes, while considered breaking changes, are part of an
47+
experimental area of the PartiQL library and thus do not mandate a major-version bump of this library. Consumers
48+
of these experimental APIs should be wary of these changes.
5649

5750
### Contributors
58-
Thank you to all who have contributed!
59-
60-
## [0.14.8]
61-
62-
### Added
51+
- @alancai98
52+
- @dlurton
53+
- @johnedquinn
6354

64-
### Changed
65-
66-
### Deprecated
55+
## [0.14.8] - 2024-08-19
6756

6857
### Fixed
6958
- Case When Branch inference will preserve type constraint for String Type and Decimal Type, if no coercion is required.
70-
### Removed
71-
72-
### Security
7359

7460
### Contributors
7561
Thank you to all who have contributed!
7662

77-
## [0.14.7]
63+
## [0.14.7] - 2024-08-05
7864

7965
### Fixed
8066
- `partiql-lang`'s `PartiQLParserBuilder.standard()` will use the ANTLR dependency from `partiql-parser` to
8167
prevent `NoSuchMethodError`s
8268

83-
## [0.14.6]
69+
## [0.14.6] - 2024-07-25
8470

8571
### Added
8672
- Adds `PartiQLValueTextWriter` implementation of date, time, and timestamp values
@@ -98,25 +84,17 @@ org.partiql.parser.PartiQLParser, not the org.partiql.lang.syntax.PartiQLParser.
9884
- partiql-parser: parses non-SFW expressions to be PartiQL `OUTER` bag operators
9985
- partiql-ast: fixes missing parens from `bag_op` when printing using `SqlDialect`
10086

101-
### Deprecated
102-
10387
### Fixed
10488
- Fixed classpath conflict for IsStaticTypeMeta
10589
- Fixes ANTLR parser grammar file naming.
10690

107-
### Removed
108-
109-
### Security
110-
11191
### Contributors
11292
Thank you to all who have contributed!
113-
- @<your-username>
114-
11593
- @rchowell
11694
- @alancai98
11795
- @johnedquinn
11896

119-
## [0.14.5]
97+
## [0.14.5] - 2024-04-26
12098

12199
### Added
122100
- partiql-ast: adds warning not to implement `AstVisitor` interface directly. Please extend `AstBaseVisitor` instead.
@@ -138,10 +116,6 @@ Thank you to all who have contributed!
138116
- Updates the default `.sql()` method to use a more efficient (internal) printer implementation.
139117
- Fixes aggregations of attribute references to values of union types. This fix also allows for proper error handling by passing the UnknownAggregateFunction problem to the ProblemCallback. Please note that, with this change, the planner will no longer immediately throw an IllegalStateException for this exact scenario.
140118

141-
### Removed
142-
143-
### Security
144-
145119
### Contributors
146120
Thank you to all who have contributed!
147121
- @rchowell
@@ -156,7 +130,7 @@ This is a pre-release containing:
156130

157131
Please note that these changes are subject to future breaking changes without warning.
158132

159-
## [0.14.4]
133+
## [0.14.4] - 2024-03-14
160134

161135
### Added
162136
- Added constrained decimal as valid parameter type to functions that take in numeric parameters.
@@ -1155,9 +1129,11 @@ breaking changes if migrating from v0.9.2. The breaking changes accidentally int
11551129
### Added
11561130
Initial alpha release of PartiQL.
11571131

1158-
[Unreleased]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.8...HEAD
1132+
[Unreleased]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-rc.3...HEAD
1133+
[1.0.0-rc.3]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-rc.2...v1.0.0-rc.3
11591134
[1.0.0-rc.2]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-rc.1...v1.0.0-rc.2
11601135
[1.0.0-rc.1]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-perf.1...v1.0.0-rc.1
1136+
[0.14.9]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.8...v0.14.9
11611137
[0.14.8]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.7...v0.14.8
11621138
[0.14.7]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.6...v0.14.7
11631139
[0.14.6]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.5...v0.14.6

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ This project is published to [Maven Central](https://search.maven.org/artifact/o
3131

3232
| Group ID | Artifact ID | Recommended Version |
3333
|---------------|-----------------------|---------------------|
34-
| `org.partiql` | `partiql-lang-kotlin` | `1.0.0-rc.2` |
34+
| `org.partiql` | `partiql-lang-kotlin` | `0.14.9` |
3535

36+
If you are looking for a pre-release version, the latest is: `1.0.0-rc.3`.
3637

3738
For Maven builds, add the following to your `pom.xml`:
3839

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.partiql
2-
version=1.0.0-rc.3-SNAPSHOT
2+
version=1.0.0-rc.3
33

44
ossrhUsername=EMPTY
55
ossrhPassword=EMPTY

0 commit comments

Comments
 (0)