This is an automated email from the ASF dual-hosted git repository.
weitingchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten-site.git
The following commit(s) were added to refs/heads/main by this push:
new fb031f2 add blog feature (#29)
fb031f2 is described below
commit fb031f25c70192bb34d438997df56d3e403b38e5
Author: Wei-Ting Chen <[email protected]>
AuthorDate: Thu Sep 12 17:53:19 2024 +0800
add blog feature (#29)
---
_layouts/post.html | 7 +++++++
_posts/2024-09-03-Gluten-1.2.0-release.md | 32 +++++++++++++++++++++++++++++++
blog.html | 16 ++++++++++++++++
contributing.md | 2 +-
references.md | 2 +-
5 files changed, 57 insertions(+), 2 deletions(-)
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..fdcc889
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,7 @@
+---
+layout: default
+---
+<h1>{{ page.title }}</h1>
+<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
+
+{{ content }}
diff --git a/_posts/2024-09-03-Gluten-1.2.0-release.md
b/_posts/2024-09-03-Gluten-1.2.0-release.md
new file mode 100644
index 0000000..31aa8c6
--- /dev/null
+++ b/_posts/2024-09-03-Gluten-1.2.0-release.md
@@ -0,0 +1,32 @@
+---
+layout: post
+author: Weiting Chen
+---
+
+On Sept. 3rd 2024, I am thrilled to share that Apache Gluten (incubating) has
celebrated its 1st Apache official release, version 1.2.0, featuring the
following highlights.
+
+What's new in Gluten 1.2.0
+
+* Support Spark 3.2.2, 3.3.1, 3.4.2, and 3.5.1 with all UTs passed(if data
type supported)
+* Support 31 common Spark Operators(based on Spark3.2)
+* Support 266 common Spark Functions(based on Spark3.2)
+* Velox codebase updated to 2024/07/05
+* New RSS support: add Apache Uniffle integration
+* New Data Lake support: Iceberge, Delta Lake
+* New File Format Support: CSV
+* Enhanced CI workflow
+* Refresh Documentations in Gluten website(https://gluten.apache.org/)
+* More Stability in Spill, OOM, and other cases support
+* More Bug Fixing
+
+For further information, please check
+
+[Downloads](https://gluten.apache.org/downloads/)
+
+[Release Notes](https://github.com/apache/incubator-gluten/releases/tag/v1.2.0)
+
+[Documentations](http://gluten.apache.org/docs/)
+
+[About How to Contribute to Gluten](http://gluten.apache.org/contributing/)
+
+[Contact Us](http://gluten.apache.org/contact/)
diff --git a/blog.html b/blog.html
new file mode 100644
index 0000000..78f7bd7
--- /dev/null
+++ b/blog.html
@@ -0,0 +1,16 @@
+---
+layout: default
+title: Blog
+nav_order: 6
+permalink: /blog/
+---
+<h1>Latest Posts</h1>
+
+<ul>
+ {% for post in site.posts %}
+ <li>
+ <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
+ {{ post.excerpt }}
+ </li>
+ {% endfor %}
+</ul>
diff --git a/contributing.md b/contributing.md
index 67c62ac..9f14dbe 100644
--- a/contributing.md
+++ b/contributing.md
@@ -1,7 +1,7 @@
---
layout: page
title: Contributing to Gluten
-nav_order: 7
+nav_order: 8
permalink: /contributing/
---
diff --git a/references.md b/references.md
index 72f6837..6684509 100644
--- a/references.md
+++ b/references.md
@@ -1,7 +1,7 @@
---
layout: page
title: Gluten References
-nav_order: 6
+nav_order: 7
permalink: /references/
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]