Commit 3221226 1 parent 9c06f71 commit 3221226 Copy full SHA for 3221226
File tree 6 files changed +32
-3
lines changed
6 files changed +32
-3
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.1]
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
## [ 0.14.8]
27
44
28
45
### Added
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 ` | ` 0.14.8 ` |
34
+ | ` org.partiql ` | ` partiql-lang-kotlin ` | ` 1.0.0-rc.1 ` |
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-SNAPSHOT
2
+ version =1.0.0-rc.1
3
3
4
4
ossrhUsername =EMPTY
5
5
ossrhPassword =EMPTY
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ tasks.compileTestKotlin {
76
76
tasks.withType<Jar >().configureEach {
77
77
// ensure "generateGrammarSource" is called before "sourcesJar".
78
78
dependsOn(tasks.withType<AntlrTask >())
79
+ duplicatesStrategy = DuplicatesStrategy .EXCLUDE
79
80
}
80
81
81
82
tasks.withType< org.jetbrains.dokka.gradle.DokkaTask > ().configureEach {
@@ -97,7 +98,7 @@ tasks.processResources {
97
98
publish {
98
99
artifactId = " partiql-parser"
99
100
name = " PartiQL Parser"
100
- description = " PartiQL's experimental Parser"
101
+ description = " PartiQL's Parser"
101
102
// `antlr` dependency configuration adds the ANTLR API configuration (and Maven `compile` dependency scope on
102
103
// publish). It's a known issue w/ the ANTLR gradle plugin. Follow https://github.com/gradle/gradle/issues/820
103
104
// for context. In the maven publishing step, any API or IMPLEMENTATION dependencies w/ "antlr4" non-runtime
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ components.withType(AdhocComponentWithVariants::class.java).forEach { c ->
41
41
tasks.withType<Javadoc > {
42
42
enabled = false
43
43
}
44
+
44
45
tasks.withType<Jar > {
45
46
duplicatesStrategy = DuplicatesStrategy .EXCLUDE
46
47
}
Original file line number Diff line number Diff line change @@ -33,6 +33,16 @@ components.withType(AdhocComponentWithVariants::class.java).forEach { c ->
33
33
}
34
34
}
35
35
36
+ // Need to add this as we have both Java and Kotlin sources. Dokka already handles multi-language projects. If
37
+ // Javadoc is enabled, we end up overwriting index.html (causing compilation errors).
38
+ tasks.withType<Javadoc > {
39
+ enabled = false
40
+ }
41
+
42
+ tasks.withType<Jar > {
43
+ duplicatesStrategy = DuplicatesStrategy .EXCLUDE
44
+ }
45
+
36
46
tasks.shadowJar {
37
47
configurations = listOf (project.configurations.shadow.get())
38
48
}
You can’t perform that action at this time.
0 commit comments