From 6846c20ab356c51f200de8ad1f6341d13f0bf90f Mon Sep 17 00:00:00 2001 From: Tyler Thomas <36181311+tylerjthomas9@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:19:09 -0700 Subject: [PATCH 1/2] Prevent attempting downloads on the first day of a quarter --- src/download_filings.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download_filings.jl b/src/download_filings.jl index 6c224c5..bdc3488 100644 --- a/src/download_filings.jl +++ b/src/download_filings.jl @@ -231,7 +231,7 @@ function download_filings( running_tests=false::Bool, clean_text::Function=_pass_text, ) - current_date = Dates.now() + current_date = Dates.now() - Dates.Day(1) #https://github.com/tylerjthomas9/ScrapeSEC.jl/issues/24 current_year = Dates.year(current_date) current_quarter = Dates.quarterofyear(current_date) From ad4b9d8dd291a5335d2c62f6db6472e42af064dc Mon Sep 17 00:00:00 2001 From: Tyler Thomas <36181311+tylerjthomas9@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:26:27 -0700 Subject: [PATCH 2/2] bump to v1.0.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ce771be..39b63b6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ScrapeSEC" uuid = "856806e7-be2f-4540-8165-3a51303b7af0" authors = ["tylerjthomas9 "] -version = "1.0.0" +version = "1.0.1" [deps] CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"