Skip to content

Commit

Permalink
Prepare 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cchantep committed Sep 6, 2021
1 parent 4ae661a commit ab19018
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 75 deletions.
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@ associated channels (e.g. GitHub, Discord) to be a safe and friendly environment
The compatible versions of [Spark](http://spark.apache.org/) and
[cats](https://github.com/typelevel/cats) are as follows:

| Frameless | Spark | Cats | Cats-Effect | Scala |
| --- | --- | --- | --- | --- |
| 0.4.0 | 2.2.0 | 1.0.0-IF | 0.4 | 2.11
| 0.4.1 | 2.2.0 | 1.x | 0.8 | 2.11
| 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.9.0 | 3.0.0 | 1.x | 1.x | 2.12
| 0.10.1 | 3.1.0 | 2.x | 2.x | 2.12
| Frameless | Spark | Cats | Cats-Effect | Scala
| --------- | ----- | -------- | ----------- | ---
| 0.4.0 | 2.2.0 | 1.0.0-IF | 0.4 | 2.11
| 0.4.1 | 2.2.0 | 1.x | 0.8 | 2.11
| 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.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


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
32 changes: 25 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,31 @@ lazy val cats = project

lazy val dataset = project
.settings(name := "frameless-dataset")
.settings(framelessSettings: _*)
.settings(framelessTypedDatasetREPL: _*)
.settings(publishSettings: _*)
.settings(libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion % Provided,
"org.apache.spark" %% "spark-sql" % sparkVersion % Provided,
"net.ceedubs" %% "irrec-regex-gen" % irrecVersion % Test
.settings(framelessSettings)
.settings(framelessTypedDatasetREPL)
.settings(publishSettings)
.settings(Seq(
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion % Provided,
"org.apache.spark" %% "spark-sql" % sparkVersion % Provided,
"net.ceedubs" %% "irrec-regex-gen" % irrecVersion % Test
),
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core._

val imt = ProblemFilters.exclude[IncompatibleMethTypeProblem](_)
val mc = ProblemFilters.exclude[MissingClassProblem](_)
val dmm = ProblemFilters.exclude[DirectMissingMethodProblem](_)

// TODO: Remove have version bump
Seq(
imt("frameless.RecordEncoderFields.deriveRecordCons"),
imt("frameless.RecordEncoderFields.deriveRecordLast"),
mc("frameless.functions.FramelessLit"),
mc(f"frameless.functions.FramelessLit$$"),
dmm("frameless.functions.package.litAggr")
)
}
))
.dependsOn(core % "test->test;compile->compile")

Expand Down
58 changes: 0 additions & 58 deletions dataset/src/main/scala/frameless/functions/FramelessLit.scala

This file was deleted.

0 comments on commit ab19018

Please sign in to comment.