Skip to content

Commit 60e2e66

Browse files
authored
release: v1.2.2 (#1766)
* release: v1.2.2 * migrate to central portal
1 parent b9b5184 commit 60e2e66

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,23 @@ Thank you to all who have contributed!
2525

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

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+
43+
## [1.2.2](https://TODO.com) - 2025-06-26
44+
2845
### Added
2946
- **EXPERIMENTAL** add `metas` map for `PType`
3047
- partiql-planner: `ROW` or collection types with excluded fields resulting from `RelExclude` will include a meta
@@ -50,6 +67,7 @@ Thank you to all who have contributed!
5067

5168
### Contributors
5269
Thank you to all who have contributed!
70+
- @alancai98
5371

5472
## [1.2.1](https://github.com/partiql/partiql-lang-kotlin/releases/tag/v1.2.1) - 2025-05-07
5573

build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ rootProject.run {
1414
extensions.getByType(NexusPublishExtension::class.java).run {
1515
this.repositories {
1616
sonatype {
17-
nexusUrl.set(uri("https://aws.oss.sonatype.org/service/local/"))
18-
username.set(properties["ossrhUsername"].toString())
19-
password.set(properties["ossrhPassword"].toString())
17+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
18+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
19+
username.set(properties["centralPortalUsername"].toString())
20+
password.set(properties["centralPortalPassword"].toString())
2021
}
2122
}
2223

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.2.2-SNAPSHOT
2+
version=1.2.2
33

44
ossrhUsername=EMPTY
55
ossrhPassword=EMPTY

0 commit comments

Comments
 (0)