Skip to content

Commit 348f830

Browse files
committed
Merge tag '0.10.0-RC1' into develop
no message
2 parents caddf8b + 14fe14b commit 348f830

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@ workflows:
235235
- /fix\/.*docs.*/
236236
- /docs\/.*/
237237

238-
nightly:
238+
weekly:
239239
triggers:
240240
- schedule:
241-
cron: "0 8 * * *"
241+
cron: "0 8 4 * *"
242242
filters:
243243
branches:
244244
only:
@@ -247,4 +247,3 @@ workflows:
247247
- test
248248
- it
249249
- it-no-gdal
250-
- docs

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ rf-notebook/src/main/notebooks/.ipython
4747
.metals
4848
.bloop
4949
metals.sbt
50+
*.parquet/

datasource/src/test/scala/org/locationtech/rasterframes/datasource/stac/api/StacApiDataSourceTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class StacApiDataSourceTest extends TestEnvironment { self =>
6363
.as[(String, String)]
6464
.first() shouldBe (
6565
"aviris-l1-cogs_f130329t01p00r06_sc01",
66-
"s3://aviris-data/aviris-scene-cogs-l2/2013/f130329t01p00r06/f130329t01p00r06rdn_e_sc01_ort_img_tiff.tiff"
66+
"s3://aviris-data/aviris-scene-cogs-l1/2013/f130329t01p00r06/f130329t01p00r06rdn_e_sc01_ort_img_cog.tiff"
6767
)
6868
}
6969

docs/src/main/paradox/release-notes.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44

55
### 0.10.0
66

7-
* Upgraded to Spark 3.1.2, Scala 2.12 and GeoTrellis 3.6.0
8-
* Added FocalOperations support
7+
* Upgraded to Scala 2.12 , Spark 3.1.2, and GeoTrellis 3.6.0 (a subtantial accomplishment!)
8+
* Added buffered tile support
9+
* Added focal operations: `rf_focal_mean`, `rf_focal_median`,`rf_focal_mode`, `rf_focal_max`, `rf_focal_min`, `rf_focal_stddev`, `rf_focal_moransi`, `rf_convolve`, `rf_slope`, `rf_aspect`, `rf_hillshade`
910
* Added STAC API DataFrames implementation
1011

12+
Special thanks to @pomadchin and @echeipesh for these substantial new contributions!
13+
1114
## 0.9.x
1215

1316
### 0.9.1

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__: str = '0.9.2'
23+
__version__: str = '0.10.0'

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.9.2-SNAPSHOT"
1+
ThisBuild / version := "0.10.0"

0 commit comments

Comments
 (0)