This is an automated email from the ASF dual-hosted git repository.
kontinuation pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 19c2f349 [DOCS] Update docs for releasing 1.4.1
19c2f349 is described below
commit 19c2f349d86b46cd9850d4a5a19a038c820a4fce
Author: Kontinuation <[email protected]>
AuthorDate: Sat Jun 24 12:33:08 2023 +0000
[DOCS] Update docs for releasing 1.4.1
---
docs/community/publish.md | 1 +
docs/download.md | 9 ++++++++-
docs/index.md | 3 ++-
docs/setup/release-notes.md | 2 ++
sql/common/pom.xml | 8 ++++++++
5 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/docs/community/publish.md b/docs/community/publish.md
index 7950c157..c8979c9b 100644
--- a/docs/community/publish.md
+++ b/docs/community/publish.md
@@ -413,6 +413,7 @@ Run the following script to build Javadoc and Scaladoc of
sedona modules and mov
#!/bin/bash
mvn -q clean install -DskipTests
+rm -rf docs/api/javadoc && mkdir docs/api/javadoc
mv core/target/apidocs docs/api/javadoc/core
mv viz/target/apidocs docs/api/javadoc/viz
mv sql/common/target/site/scaladocs docs/api/javadoc/sql
diff --git a/docs/download.md b/docs/download.md
index b5b16a69..8580cefc 100644
--- a/docs/download.md
+++ b/docs/download.md
@@ -14,6 +14,13 @@ Automatically generated binary JARs (per each Master branch
commit): [GitHub Act
## Versions
+### 1.4.1
+
+| | Download from ASF | Checksum | Signature |
+|:-----------------:|:--------:|:--------:|:---------:|
+| Source code |
[src](https://www.apache.org/dyn/closer.lua/sedona/1.4.1/apache-sedona-1.4.1-src.tar.gz)
|
[sha512](https://downloads.apache.org/sedona/1.4.1/apache-sedona-1.4.1-src.tar.gz.sha512)
|
[asc](https://downloads.apache.org/sedona/1.4.1/apache-sedona-1.4.1-src.tar.gz.asc)
|
+| Binary |
[bin](https://www.apache.org/dyn/closer.lua/sedona/1.4.1/apache-sedona-1.4.1-bin.tar.gz)
|
[sha512](https://downloads.apache.org/sedona/1.4.1/apache-sedona-1.4.1-bin.tar.gz.sha512)
|
[asc](https://downloads.apache.org/sedona/1.4.1/apache-sedona-1.4.1-bin.tar.gz.asc)
+
### 1.4.0
| | Download from ASF | Checksum | Signature |
@@ -34,4 +41,4 @@ Past Sedona releases are archived and can be found here:
[Apache archive](https:
## Security
-For security issues, please refer to https://www.apache.org/security/
\ No newline at end of file
+For security issues, please refer to https://www.apache.org/security/
diff --git a/docs/index.md b/docs/index.md
index 5b940a44..dc8c883c 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,5 +1,6 @@
+### 06/25/2023: Sedona 1.4.1 released. It adds geodesic / geography functions,
more raster functions and support Spark 3.4.
### 03/19/2023: Sedona 1.4.0 released. It provides GeoParquet filter pushdown
(10X less memory footprint), faster serialization (3X speed), S2-based fast
approximate join and enhanced R language support
### 01/2023: Apache Sedona graduated to an Apache Top Level Project!
### 12/23/2022: Sedona 1.3.1-incubating is released. It adds native support of
GeoParquet, DataFrame style API, Scala 2.13, Python 3.10, spatial aggregation
on Flink. Please check Sedona release notes.
### 08/30/2022: Sedona 1.2.1-incubating is released. It supports Spark 2.4 -
3.3. and Flink 1.12+.
-### 04/16/2022: Sedona 1.2.0-incubating is released. Sedona now supports
geospatial stream processing in Apache Flink.
\ No newline at end of file
+### 04/16/2022: Sedona 1.2.0-incubating is released. Sedona now supports
geospatial stream processing in Apache Flink.
diff --git a/docs/setup/release-notes.md b/docs/setup/release-notes.md
index 53773c81..a2d61e22 100644
--- a/docs/setup/release-notes.md
+++ b/docs/setup/release-notes.md
@@ -86,6 +86,8 @@ Sedona 1.4.1 is compiled against, Spark 3.3 / Spark 3.4 /
Flink 1.12, Java 8.
</li>
<li>[<a
href='https://issues.apache.org/jira/browse/SEDONA-292'>SEDONA-292</a>] -
Bridge Sedona Raster and Map Algebra operators
</li>
+<li>[<a
href='https://issues.apache.org/jira/browse/SEDONA-297'>SEDONA-297</a>] -
Implement ST_NRings
+</li>
<li>[<a
href='https://issues.apache.org/jira/browse/SEDONA-302'>SEDONA-302</a>] -
Implement ST_Translate
</li>
</ul>
diff --git a/sql/common/pom.xml b/sql/common/pom.xml
index 878ca9a3..f4d8713b 100644
--- a/sql/common/pom.xml
+++ b/sql/common/pom.xml
@@ -131,6 +131,14 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <configuration>
+ <doctitle>sedona-sql documentation</doctitle>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<groupId>org.scalatest</groupId>