Skip to content

Commit

Permalink
*Update version to remove snapshot (#399)
Browse files Browse the repository at this point in the history
* Change packaging to use Uber jar package with shaded dependencies
  • Loading branch information
ag-ramachandran authored Aug 7, 2024
1 parent b02facf commit 175ac60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ This connector works with the following spark environments:

## Changelog

**Breaking changes in versions 5.2.x** - From these versions, the published packages are shaded and packaged as a self contained jar. This is to avoid issues with common OSS libraries, spark runtimes and/or application dependencies.

For major changes from previous releases, please refer to [Releases](https://github.com/Azure/azure-kusto-spark/releases).
For known or new issues, please refer to the [issues](https://github.com/Azure/azure-kusto-spark/issues) section.
> Note: Use the 4.x series only if you are using JDK 11. Versions 3.x and 5.x will work with JDK8 and all versions up
Expand All @@ -39,14 +41,14 @@ link your application with the artifact below to use the Azure Data Explorer Con
```
groupId = com.microsoft.azure.kusto
artifactId = kusto-spark_3.0_2.12
version = 5.2.0-SNAPSHOT
version = 5.2.2
```

**In Maven**:

Look for the following coordinates:
```
com.microsoft.azure.kusto:kusto-spark_3.0_2.12:5.2.0-SNAPSHOT
com.microsoft.azure.kusto:kusto-spark_3.0_2.12:5.2.2
```

Or clone this repository and build it locally to add it to your local maven repository,.
Expand All @@ -56,15 +58,15 @@ The jar can also be found under the [released package](https://github.com/Azure/
<dependency>
<groupId>com.microsoft.azure.kusto</groupId>
<artifactId>kusto-spark_3.0_2.12</artifactId>
<version>5.2.0-SNAPSHOT</version>
<version>5.2.2</version>
</dependency>
```

**In SBT**:

```scala
libraryDependencies ++= Seq(
"com.microsoft.azure.kusto" %% "kusto-spark_3.0" % "5.2.0-SNAPSHOT"
"com.microsoft.azure.kusto" %% "kusto-spark_3.0" % "5.2.2"
)
```

Expand All @@ -73,7 +75,7 @@ libraryDependencies ++= Seq(
Libraries -> Install New -> Maven -> copy the following coordinates:

```
com.microsoft.azure.kusto:kusto-spark_3.0_2.12:5.2.0-SNAPSHOT
com.microsoft.azure.kusto:kusto-spark_3.0_2.12:5.2.2
```

#### Building Samples Module
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<packaging>pom</packaging>
<version>${revision}</version>
<properties>
<revision>5.2.2-SNAPSHOT</revision>
<revision>5.2.2</revision>
<!-- Spark dependencies -->
<scala.version.major>2.12</scala.version.major>
<scalafmt.plugin.version>1.1.1640084764.9f463a9</scalafmt.plugin.version>
Expand Down

0 comments on commit 175ac60

Please sign in to comment.