Skip to content

Commit

Permalink
RC release prep.
Browse files Browse the repository at this point in the history
  • Loading branch information
metasim committed Nov 22, 2019
1 parent d223b82 commit 2d4591f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {

def checker(colName: String, valFilter: Int, assertValue: Int): Unit = {
// print this so we can see what's happening if something wrong
println(s"${colName} should be ${assertValue} for qa val ${valFilter}")
logger.debug(s"${colName} should be ${assertValue} for qa val ${valFilter}")
result.filter($"val" === lit(valFilter))
.select(col(colName))
.as[ProjectedRasterTile]
Expand Down Expand Up @@ -1236,7 +1236,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
val printOutcome = if (resultIsNoData) "all NoData cells"
else "all data cells"

println(s"${columnName} should contain ${printOutcome} for qa val ${maskValueFilter}")
logger.debug(s"${columnName} should contain ${printOutcome} for qa val ${maskValueFilter}")
val resultDf = result
.filter($"val" === lit(maskValueFilter))

Expand All @@ -1245,7 +1245,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
.first()

val dataTile = resultDf.select(col(columnName)).as[ProjectedRasterTile].first()
println(s"\tData tile values for col ${columnName}: ${dataTile.toArray().mkString(",")}")
logger.debug(s"\tData tile values for col ${columnName}: ${dataTile.toArray().mkString(",")}")
// val celltype = resultDf.select(rf_cell_type(col(columnName))).as[CellType].first()
// println(s"Cell type for col ${columnName}: ${celltype}")

Expand Down
2 changes: 1 addition & 1 deletion pyrasterframes/src/main/python/pyrasterframes/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
#

# Translating Java version from version.sbt to PEP440 norms
__version__ = '0.9.0.dev0'
__version__ = '0.9.0.rc1'
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.9.0-SNAPSHOT"
version in ThisBuild := "0.9.0-RC1"

0 comments on commit 2d4591f

Please sign in to comment.