This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch new-site-dev
in repository https://gitbox.apache.org/repos/asf/pinot-site.git


The following commit(s) were added to refs/heads/new-site-dev by this push:
     new 1fbb2f8d Update 1.1.0 release
1fbb2f8d is described below

commit 1fbb2f8dbe7a590b21522f0487bacabe0cca8299
Author: Xiang Fu <[email protected]>
AuthorDate: Sat Apr 6 14:58:57 2024 +0800

    Update 1.1.0 release
---
 RELEASE.md               |  20 +++----
 components/Header.tsx    |   2 +-
 components/Terminal.tsx  |   4 +-
 data/downloads/1.1.0.mdx |   2 +-
 data/downloadsData.ts    | 144 +++++++++++++++++++++++------------------------
 data/siteMetadata.js     |   2 +-
 6 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/RELEASE.md b/RELEASE.md
index 8832552a..4ea2a722 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -4,7 +4,7 @@ This guide will walk you through the process of releasing a new 
version of Apach
 
 ## 1. Create the Release Note
 
-Create a new `.mdx` file for the release. The file should be named with the 
version it goes by, for example: `1.0.0.mdx`.
+Create a new `.mdx` file for the release. The file should be named with the 
version it goes by, for example: `1.1.0.mdx`.
 
 ## 2. Frontmatter Configuration
 
@@ -12,17 +12,17 @@ Each release note requires specific metadata in the 
frontmatter. Here's the stru
 
 ```yaml
     ---
-    version: '1.0.0' # Version of your release
-    date: '9/20/2023' # Date of the release
-    href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz'
 # Example
+    version: '1.1.0' # Version of your release
+    date: '3/25/2024' # Date of the release
+    href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz'
 # Example
     officialSource:
-        download: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz'
 # Example
-        sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512'
 # Example
-        asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
 # Example
+        download: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz'
 # Example
+        sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512'
 # Example
+        asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
 # Example
     binary:
-        download: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz'
 # Example
-        sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512'
 # Example
-        asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
 # Example
+        download: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz'
 # Example
+        sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512'
 # Example
+        asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
 # Example
     releaseNotes: 'This release includes new multi-stage query engine 
features, enhancements, and bug fixes.' # Release Note Example
     ---
 ```
diff --git a/components/Header.tsx b/components/Header.tsx
index cee2048b..529189f1 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -22,7 +22,7 @@ const Header = () => {
                 buttonText={siteMetadata.announcement.buttonText as string}
                 link={siteMetadata.announcement.link as string}
             >
-                🎉🎉🎉 Announcing the release of Apache Pinot 1.0
+                🎉🎉🎉 Announcing the release of Apache Pinot 1.1.0
             </AnnouncementBar>
             <header className="border-b-1 flex items-center justify-between 
border-b px-5 py-3 md:px-[4rem] md:py-4">
                 <div className="flex">
diff --git a/components/Terminal.tsx b/components/Terminal.tsx
index b3439a88..2d962923 100644
--- a/components/Terminal.tsx
+++ b/components/Terminal.tsx
@@ -9,12 +9,12 @@ const Terminal: FC = () => {
     const commands = {
         x86: [
             'docker run -p 9000:9000 \\',
-            'apachepinot/pinot:1.0.0 \\',
+            'apachepinot/pinot:1.1.0 \\',
             'QuickStart -type hybrid'
         ],
         ARM64: [
             'docker run -p 9000:9000 \\',
-            'apachepinot/pinot:1.0.0-arm64 \\',
+            'apachepinot/pinot:1.1.0-arm64 \\',
             'QuickStart -type hybrid'
         ]
     };
diff --git a/data/downloads/1.1.0.mdx b/data/downloads/1.1.0.mdx
index 45cafd86..e36eff66 100644
--- a/data/downloads/1.1.0.mdx
+++ b/data/downloads/1.1.0.mdx
@@ -1,6 +1,6 @@
 ---
 version: 1.1.0
-date: 25/03/2024
+date: 03/25/2024
 href: 
https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz
 officialSource:
     download: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz'
diff --git a/data/downloadsData.ts b/data/downloadsData.ts
index 51cab0f7..423c8e8d 100644
--- a/data/downloadsData.ts
+++ b/data/downloadsData.ts
@@ -17,153 +17,153 @@ type DownloadData = {
 
 const downloadData: DownloadData[] = [
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
     },
     {
-        version: '1.0.0',
-        date: '9/20/2023',
-        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
+        version: '1.1.0',
+        date: '3/25/2024',
+        href: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
         officialSource: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-src.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-src.tar.gz.asc'
         },
         binary: {
             download:
-                
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz',
-            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.sha512',
-            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.0.0/apache-pinot-1.0.0-bin.tar.gz.asc'
+                
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz',
+            sha512: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.sha512',
+            asc: 
'https://downloads.apache.org/pinot/apache-pinot-1.1.0/apache-pinot-1.1.0-bin.tar.gz.asc'
         },
         releaseNotes:
             'This release includes new multi-stage query engine features, 
enhancements, and bug fixes.'
diff --git a/data/siteMetadata.js b/data/siteMetadata.js
index 3ab03bf2..dead1575 100644
--- a/data/siteMetadata.js
+++ b/data/siteMetadata.js
@@ -107,7 +107,7 @@ const siteMetadata = {
     },
     announcement: {
         buttonText: 'learn more',
-        link: 'https://github.com/apache/pinot/releases/tag/release-1.0.0'
+        link: 'https://github.com/apache/pinot/releases/tag/release-1.1.0'
     },
     communityLinks: [
         {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to