Skip to content

Commit

Permalink
Merge branch 'release/v1.2.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonkmi committed Feb 15, 2020
2 parents 2cd0fbe + fbd96c9 commit 67810b8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [v1.2.5]

### Changed
- DataFormat enumeration type to String

## [v1.2.4]

### Changed
Expand Down Expand Up @@ -95,4 +100,5 @@ All notable changes to this project will be documented in this file.
[v1.2.1]: https://github.com/andersonkmi/spark-utils/compare/v1.2.1...v1.2.0
[v1.2.2]: https://github.com/andersonkmi/spark-utils/compare/v1.2.2...v1.2.1
[v1.2.3]: https://github.com/andersonkmi/spark-utils/compare/v1.2.3...v1.2.2
[v1.2.4]: https://github.com/andersonkmi/spark-utils/compare/v1.2.4...v1.2.3
[v1.2.4]: https://github.com/andersonkmi/spark-utils/compare/v1.2.4...v1.2.3
[v1.2.5]: https://github.com/andersonkmi/spark-utils/compare/v1.2.5...v1.2.4
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ organization := "org.codecraftlabs.spark"

name := "spark-utils"

val appVersion = "1.2.4"
val appVersion = "1.2.5"

val appName = "spark-utils"

Expand Down
8 changes: 4 additions & 4 deletions src/main/scala/org/codecraftlabs/spark/utils/DataFormat.scala
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package org.codecraftlabs.spark.utils

object DataFormat extends Enumeration {
type DataFormat = Value
type DataFormat = String

val CSV: Value = Value("csv")
val JSON: Value = Value("json")
val PARQUET: Value = Value("parquet")
val CSV = "csv"
val JSON = "json"
val PARQUET = "parquet"
}

0 comments on commit 67810b8

Please sign in to comment.