From a99ed183a16d220af5df6fb6565e580ed3f4c7aa Mon Sep 17 00:00:00 2001 From: Nelson Jovel Date: Wed, 7 Feb 2024 13:47:55 -0800 Subject: [PATCH] chore: bump version --- app/lib/dashboard/seeder.rb | 2 +- lib/dashboard/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/dashboard/seeder.rb b/app/lib/dashboard/seeder.rb index f4e7cd4..979d10c 100644 --- a/app/lib/dashboard/seeder.rb +++ b/app/lib/dashboard/seeder.rb @@ -6,7 +6,7 @@ module Dashboard academic_years << { range: } end - AcademicYear.upsert_all(academic_years, unique_by: :range) + Dashboard::AcademicYear.upsert_all(academic_years, unique_by: :range) end def seed_districts_and_schools(csv_file) diff --git a/lib/dashboard/version.rb b/lib/dashboard/version.rb index 66aa56b..494cb09 100644 --- a/lib/dashboard/version.rb +++ b/lib/dashboard/version.rb @@ -1,3 +1,3 @@ module Dashboard - VERSION = "0.1.11" + VERSION = "0.1.12" end