Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Oct 24, 2021
1 parent d716519 commit c9e8f72
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.

name: Continuous Integration

on:
Expand Down Expand Up @@ -68,7 +61,7 @@ jobs:
with:
java-version: ${{ matrix.java }}

- name: Release
- name: Publish artifacts
run: sbt ++${{ matrix.scala }} ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
Expand Down
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,20 @@ The compatible versions of [Spark](http://spark.apache.org/) and
| 0.5.2 | 2.2.1 | 1.x | 0.8 | 2.11
| 0.6.1 | 2.3.0 | 1.x | 0.8 | 2.11
| 0.7.0 | 2.3.1 | 1.x | 1.x | 2.11
| 0.8.0 | 2.4.0 | 1.x | 1.x | 2.11/2.12
| 0.8.0 | 2.4.0 | 1.x | 1.x | 2.11 / 2.12
| 0.9.0 | 3.0.0 | 1.x | 1.x | 2.12
| 0.10.1 | 3.1.0 | 2.x | 2.x | 2.12
| 0.11.0 | 3.1.0 | 2.x | 2.x | 2.12
| 0.11.0 | 3.2.0 / 3.1.2 / 3.0.1 | 2.x | 2.x | 2.12 / 2.13

Starting 0.11 we introduced Spark cross published artifacts:
* By default, frameless artifacts depend on the most recent Spark version
* Suffix `-spark-{major}{minor}` is added to artifacts that are released for the previous Spark version(s)

Artifact names examples:

* `frameless-dataset` (the latest Spark dependency)
* `frameless-dataset-spark31` (Spark 3.1.x dependency)
* `frameless-dataset-spark30` (Spark 3.0.x dependency)

Versions 0.5.x and 0.6.x have identical features. The first is compatible with Spark 2.2.1 and the second with 2.3.0.

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val sparkVersion = "3.2.0"
val spark30Version = "3.0.1"
val spark31Version = "3.1.2"
val spark30Version = "3.0.1"
val catsCoreVersion = "2.6.1"
val catsEffectVersion = "2.4.0"
val catsMtlVersion = "0.7.1"
Expand Down

0 comments on commit c9e8f72

Please sign in to comment.