Skip to content

Commit 8510a99

Browse files
authored
Prepares v1.0.0-rc.2 release (#1643)
1 parent e2e7735 commit 8510a99

File tree

5 files changed

+29
-11
lines changed

5 files changed

+29
-11
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,23 @@ 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]
27+
28+
### Added
29+
30+
### Changed
31+
32+
### Deprecated
33+
34+
### Fixed
35+
36+
### Removed
37+
38+
### Security
39+
40+
### Contributors
41+
Thank you to all who have contributed!
42+
2643
## [1.0.0-rc.1]
2744

2845
### Added
@@ -1139,6 +1156,8 @@ breaking changes if migrating from v0.9.2. The breaking changes accidentally int
11391156
Initial alpha release of PartiQL.
11401157

11411158
[Unreleased]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.8...HEAD
1159+
[1.0.0-rc.2]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-rc.1...v1.0.0-rc.2
1160+
[1.0.0-rc.1]: https://github.com/partiql/partiql-lang-kotlin/compare/v1.0.0-perf.1...v1.0.0-rc.1
11421161
[0.14.8]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.7...v0.14.8
11431162
[0.14.7]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.6...v0.14.7
11441163
[0.14.6]: https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.5...v0.14.6

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ 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.1` |
34+
| `org.partiql` | `partiql-lang-kotlin` | `1.0.0-rc.2` |
3535

3636

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

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.partiql
2-
version=1.0.0-rc.2-SNAPSHOT
2+
version=1.0.0-rc.2
33

44
ossrhUsername=EMPTY
55
ossrhPassword=EMPTY

partiql-ast/build.gradle.kts

+3-9
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,9 @@ dependencies {
2828
annotationProcessor(Deps.lombok)
2929
}
3030

31-
tasks.shadowJar {
32-
configurations = listOf(project.configurations.shadow.get())
33-
}
34-
35-
// Workaround for https://github.com/johnrengelman/shadow/issues/651
36-
components.withType(AdhocComponentWithVariants::class.java).forEach { c ->
37-
c.withVariantsFromConfiguration(project.configurations.shadowRuntimeElements.get()) {
38-
skip()
39-
}
31+
// TODO: Figure out why this is needed.
32+
tasks.withType<Jar> {
33+
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
4034
}
4135

4236
tasks.shadowJar {

partiql-eval/build.gradle.kts

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ tasks.shadowJar {
4747
configurations = listOf(project.configurations.shadow.get())
4848
}
4949

50+
// TODO: Figure out why this is needed.
51+
tasks.withType<Jar> {
52+
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
53+
}
54+
5055
// Workaround for https://github.com/johnrengelman/shadow/issues/651
5156
components.withType(AdhocComponentWithVariants::class.java).forEach { c ->
5257
c.withVariantsFromConfiguration(project.configurations.shadowRuntimeElements.get()) {

0 commit comments

Comments
 (0)