You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2023/01/30 14:16:16 UTC

[lucene-site] branch main updated: Remove leading zero from release date

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

javanna pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 1c5eda7d5 Remove leading zero from release date
1c5eda7d5 is described below

commit 1c5eda7d5069341303391896717707a1e9056c26
Author: Luca Cavanna <ja...@apache.org>
AuthorDate: Mon Jan 30 15:15:39 2023 +0100

    Remove leading zero from release date
---
 pelicanconf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pelicanconf.py b/pelicanconf.py
index 970b09b21..88cfa5437 100755
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -11,7 +11,7 @@ SITEURL = ''
 CURRENTYEAR = date.today().year
 
 LUCENE_LATEST_RELEASE = '9.5.0'
-LUCENE_LATEST_RELEASE_DATE = datetime(2023, 01, 30)
+LUCENE_LATEST_RELEASE_DATE = datetime(2023, 1, 30)
 LUCENE_PREVIOUS_MAJOR_RELEASE = '8.11.2'
 
 # This string will be appended to all unversioned css and js resources to prevent caching surprises on edits.