Skip to content

Commit

Permalink
* Updated docs with upcoming release version 1.1.0
Browse files Browse the repository at this point in the history
* Select product name depending upon enterprise flag, to be printed for 'snappy version' command.
* Discussed with @kneeraj
* Link to the latest store commit.
  • Loading branch information
Amogh Shetkar committed May 10, 2019
1 parent 1622d02 commit 1ed4dc2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,22 @@ SnappyData artifacts are hosted in Maven Central. You can add a Maven dependency
```
groupId: io.snappydata
artifactId: snappydata-core_2.11
version: 1.0.2.1
version: 1.1.0
groupId: io.snappydata
artifactId: snappydata-cluster_2.11
version: 1.0.2.1
version: 1.1.0
```

**Using SBT Dependency**

If you are using SBT, add this line to your **build.sbt** for core SnappyData artifacts:

`libraryDependencies += "io.snappydata" % "snappydata-core_2.11" % "1.0.2.1"`
`libraryDependencies += "io.snappydata" % "snappydata-core_2.11" % "1.1.0"`

For additions related to SnappyData cluster, use:

`libraryDependencies += "io.snappydata" % "snappydata-cluster_2.11" % "1.0.2.1"`
`libraryDependencies += "io.snappydata" % "snappydata-cluster_2.11" % "1.1.0"`

You can find more specific SnappyData artifacts [here](http://mvnrepository.com/artifact/io.snappydata)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ object SnappyDataVersion {

// platform version
loadProperties()
pw.println("SnappyData Platform Version " + GemFireVersion.getProductVersion +
" " + GemFireVersion.getProductReleaseStage)
val platform = s" Platform Version ${GemFireVersion.getProductVersion} " +
s"${GemFireVersion.getProductReleaseStage}"

// rowstore version
GemFireVersion.getInstance(classOf[GemFireXDVersion], SharedUtils.GFXD_VERSION_PROPERTIES)
val product = if (GemFireVersion.isEnterpriseEdition) "TIBCO ComputeDB" else "SnappyData"
pw.println(product + platform)
pw.printf("%4s%s\n", " ", GemFireVersion.getProductName + " " +
GemFireVersion.getProductVersion + " " + GemFireVersion.getProductReleaseStage)

Expand Down
2 changes: 1 addition & 1 deletion store
Submodule store updated from 1bbb3e to 3bd38b

0 comments on commit 1ed4dc2

Please sign in to comment.