Skip to content

Prepare v0.4.0 release and update PIG version #454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 7, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This project is published to [Maven Central](https://search.maven.org/artifact/o

| Group ID | Artifact ID | Recommended Version |
|----------|-------------|---------------------|
| `org.partiql` | `partiql-lang-kotlin` | `0.3.4`|
| `org.partiql` | `partiql-lang-kotlin` | `0.4.0`|


For Maven builds, add this to your `pom.xml`:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ allprojects {

subprojects {
group = 'org.partiql'
version = '0.3.5-SNAPSHOT'
version = '0.4.0'
}

buildDir = new File(rootProject.projectDir, "gradle-build/" + project.name)
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ repositories {
dependencies {
// Adding this dependency here in buildSrc exposes it to all build.gradle files in this project
// which allows PIG to be invoked by the :lang project at build time.
implementation 'org.partiql:partiql-ir-generator:0.3.2'
implementation 'org.partiql:partiql-ir-generator:0.4.0'
}