Skip to content

Commit 2d4591f

Browse files
committed
RC release prep.
1 parent d223b82 commit 2d4591f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

core/src/test/scala/org/locationtech/rasterframes/RasterFunctionsSpec.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ class RasterFunctionsSpec extends TestEnvironment with RasterMatchers {
11451145

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

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

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

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

pyrasterframes/src/main/python/pyrasterframes/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#
2121

2222
# Translating Java version from version.sbt to PEP440 norms
23-
__version__ = '0.9.0.dev0'
23+
__version__ = '0.9.0.rc1'

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.9.0-SNAPSHOT"
1+
version in ThisBuild := "0.9.0-RC1"

0 commit comments

Comments
 (0)