From b2f309f33c12aac83696f57bf8eed32c1635be33 Mon Sep 17 00:00:00 2001 From: Olexandr Konovalov Date: Fri, 28 Jul 2023 15:27:34 +0100 Subject: [PATCH] Bump up year for the next GAP bibliography update --- Doc/Bib/bibsort.g | 2 +- Doc/Bib/convbib.g | 2 +- Doc/Bib/updatebib.g | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Doc/Bib/bibsort.g b/Doc/Bib/bibsort.g index caf53fb2..598fb304 100644 --- a/Doc/Bib/bibsort.g +++ b/Doc/Bib/bibsort.g @@ -2,7 +2,7 @@ # `Doc/Bib/MSC` with lists of papers by the year of publication # and by MSC category. -years:=[1987..2021]; +years:=[1987..2023]; bib := ParseBibFiles("gap-publishednicer.bib")[1];; Print( "Loaded ", Length(bib), " records\n"); diff --git a/Doc/Bib/convbib.g b/Doc/Bib/convbib.g index 61303db2..95c37752 100644 --- a/Doc/Bib/convbib.g +++ b/Doc/Bib/convbib.g @@ -73,7 +73,7 @@ bib2niceandhtml := function(name, header, subheader) local i, ii, bib, fh, out, a, b, years, counts, pos, flag, mscreport, bstr, str, bad, citations_by_year_outfile, citations_by_msc_outfile; - years:=[1987..2021]; + years:=[1987..2023]; bstr := StringFile(Concatenation(name, ".bib")); bstr := HeuristicTranslationsLaTeX2XML.Apply(bstr); bib := ParseBibStrings(StringFile("gap-head.bib"), bstr); diff --git a/Doc/Bib/updatebib.g b/Doc/Bib/updatebib.g index 129a8ca5..65e75550 100644 --- a/Doc/Bib/updatebib.g +++ b/Doc/Bib/updatebib.g @@ -134,10 +134,10 @@ od; mathrev := Union( MRNumbersFromMathSciNet( "ReviewText", [ "www.gap", "gap-system.org", "GAP system", "GAP manual", "GAP4", "GAP3" ], - [ 1986 .. 2021 ] ), + [ 1986 .. 2023 ] ), MRNumbersFromMathSciNet( "References", [ "GAP system", "GAP manual", "GAP4", "GAP3" ], - [ 1986 .. 2021 ] ) + [ 1986 .. 2023 ] ) ); return Filtered( mathrev, w -> (not w in ourmrno) and (not w in GAPIgnoreMRnumbers) ); end; @@ -146,7 +146,7 @@ end; CheckMathSciNetForUpdates:=function() # # The function retrieves all MathSciNet entries citing "www.gap" from -# 1986 till 2021. +# 1986 till 2023. # # We use "www.gap" in references to cover our old and new website addresses. # This covers the majority of GAP citations. There might be several other @@ -158,7 +158,7 @@ CheckMathSciNetForUpdates:=function() # local mathrev, ourbib, duplicates, ourmrno, ourlabel, b, nr, pos, searchres, entry, suggestions, bib, newmrno, newlist, context, w; -mathrev := MRNumbersFromMathSciNet( "References", [ "www.gap", "gap-system.org" ], [ 1986 .. 2021 ] ); +mathrev := MRNumbersFromMathSciNet( "References", [ "www.gap", "gap-system.org" ], [ 1986 .. 2023 ] ); Print( "Reading the GAP bibliography ... \n" ); ourbib:=ParseBibFiles("gap-published.bib")[1];; Print( "Checking for multiple labels ... \n");