From 673266ec4fd318997a4ded17350139c068625800 Mon Sep 17 00:00:00 2001 From: Alan Cai Date: Thu, 18 Apr 2024 16:41:59 -0700 Subject: [PATCH] Prepare 0.6.3 release w/ corrected `artifactId`s (#157) --- README.md | 2 +- pig-runtime/build.gradle.kts | 2 +- pig/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4ff7e52..9cca590 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ To obtain the `pig` executable: - Clone this repository. - Check out the tag of the [release](https://github.com/partiql/partiql-ir-generator/releases) you wish to utilize, - e.g. `git checkout v0.6.1` + e.g. `git checkout v0.6.3` - Execute `./gradlew assemble` After the build completes, the `pig` executable and dependencies will be located diff --git a/pig-runtime/build.gradle.kts b/pig-runtime/build.gradle.kts index d450e16..fbd7e6f 100644 --- a/pig-runtime/build.gradle.kts +++ b/pig-runtime/build.gradle.kts @@ -23,6 +23,6 @@ dependencies { } publish { - artifactId = "pig-runtime" + artifactId = "partiql-ir-generator-runtime" name = "PartiQL I.R. Generator (a.k.a P.I.G.) Runtime Library" } diff --git a/pig/build.gradle.kts b/pig/build.gradle.kts index 18ec282..de2243f 100644 --- a/pig/build.gradle.kts +++ b/pig/build.gradle.kts @@ -22,7 +22,7 @@ plugins { } publish { - artifactId = "pig" + artifactId = "partiql-ir-generator" name = "PartiQL I.R. Generator (a.k.a P.I.G.)" }