Commit 8510a99 1 parent e2e7735 commit 8510a99 Copy full SHA for 8510a99
File tree 5 files changed +29
-11
lines changed
5 files changed +29
-11
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
23
Thank you to all who have contributed!
24
24
-->
25
25
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
+
26
43
## [ 1.0.0-rc.1]
27
44
28
45
### Added
@@ -1139,6 +1156,8 @@ breaking changes if migrating from v0.9.2. The breaking changes accidentally int
1139
1156
Initial alpha release of PartiQL.
1140
1157
1141
1158
[ 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
1142
1161
[ 0.14.8 ] : https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.7...v0.14.8
1143
1162
[ 0.14.7 ] : https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.6...v0.14.7
1144
1163
[ 0.14.6 ] : https://github.com/partiql/partiql-lang-kotlin/compare/v0.14.5...v0.14.6
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ This project is published to [Maven Central](https://search.maven.org/artifact/o
31
31
32
32
| Group ID | Artifact ID | Recommended Version |
33
33
| ---------------| -----------------------| ---------------------|
34
- | ` org.partiql ` | ` partiql-lang-kotlin ` | ` 1.0.0-rc.1 ` |
34
+ | ` org.partiql ` | ` partiql-lang-kotlin ` | ` 1.0.0-rc.2 ` |
35
35
36
36
37
37
For Maven builds, add the following to your ` pom.xml ` :
Original file line number Diff line number Diff line change 1
1
group =org.partiql
2
- version =1.0.0-rc.2-SNAPSHOT
2
+ version =1.0.0-rc.2
3
3
4
4
ossrhUsername =EMPTY
5
5
ossrhPassword =EMPTY
Original file line number Diff line number Diff line change @@ -28,15 +28,9 @@ dependencies {
28
28
annotationProcessor(Deps .lombok)
29
29
}
30
30
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
40
34
}
41
35
42
36
tasks.shadowJar {
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ tasks.shadowJar {
47
47
configurations = listOf (project.configurations.shadow.get())
48
48
}
49
49
50
+ // TODO: Figure out why this is needed.
51
+ tasks.withType<Jar > {
52
+ duplicatesStrategy = DuplicatesStrategy .EXCLUDE
53
+ }
54
+
50
55
// Workaround for https://github.com/johnrengelman/shadow/issues/651
51
56
components.withType(AdhocComponentWithVariants ::class .java).forEach { c ->
52
57
c.withVariantsFromConfiguration(project.configurations.shadowRuntimeElements.get()) {
You can’t perform that action at this time.
0 commit comments