Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Updating gsql_client version to 3.4.0 #35

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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 docs/basic_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build.gradle.kts
import com.optum.giraffle.tasks.GsqlTask

plugins {
id("com.optum.giraffle") version "1.3.5"
id("com.optum.giraffle") version "2.0"
id("net.saliman.properties") version "1.5.1"
}

Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ is to import the class at the top of your build file.
import com.optum.giraffle.tasks.GsqlTask

plugins {
id("com.optum.giraffle") version "1.3.5"
id("com.optum.giraffle") version "2.0"
}

val createSchema by tasks.registering(GsqlTask::class) {
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ build.gradle.kts
import com.optum.giraffle.tasks.GsqlTask

plugins {
id("com.optum.giraffle") version "1.3.5"
id("com.optum.giraffle") version "2.0"
id("net.saliman.properties") version "1.5.1"
}

Expand Down
2 changes: 2 additions & 0 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ on a remote server. Giraffle also helps you keep environment specific
configuration out of your code. Most importantly it helps you keep your
credentials out of your code.

!> Version `2.0` changes the default gsql\_client to `3.4.0`.

!> Version `1.3.5` changes the default gsql\_client to `3.1.2`. This client
is backwards compatible with previous versions. With `jcenter` shutting down it
will be necessary to obtain the gsql\_client from a different repository. See
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
projectGroup=com.optum.giraffle
projectVersion=1.3.5
projectVersion=2.0
projectDescription=Provides dsl and support for connection to Tigergraph servers, and executing scripts against Tigergraph.
org.gradle.parallel=true
2 changes: 1 addition & 1 deletion src/main/kotlin/com/optum/giraffle/Configurations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal object Configurations {
/**
* The default gsql_client version
*/
const val gsql_client_version = "3.1.2"
const val gsql_client_version = "3.4.0"

/**
* The version of net.saliman.properties to use in templates
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/optum/giraffle/GsqlPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ open class GsqlPlugin : Plugin<Project> {
registerTokenTask(gsqlPluginExtension)
registerDeleteTokenTask(gsqlPluginExtension)

logger.lifecycle("GSQL Plugin successfully applied to ${project.name}")
logger.lifecycle("GSQL Plugin 3_4_0 successfully applied to ${project.name}")

tasks.withType(GsqlTask::class.java) { task ->
task.dependsOn(gsqlCopySources)
Expand Down
2 changes: 2 additions & 0 deletions template/docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ on a remote server. Giraffle also helps you keep environment specific
configuration out of your code. Most importantly it helps you keep your
credentials out of your code.

!> Version `2.0` changes the default gsql\_client to `3.4.0`.

!> Version `1.3.5` changes the default gsql\_client to `3.1.2`. This client
is backwards compatible with previous versions. With `jcenter` shutting down it
will be necessary to obtain the gsql\_client from a different repository. See
Expand Down