diff --git a/.app_version b/.app_version index bc300b9..8b7217f 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.15.9 +0.15.10 diff --git a/CHANGELOG.md b/CHANGELOG.md index 49aee73..000b589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +# 0.15.10 - 2024-10-25 + +### Fixed + +- Data migration that prevented the application from starting. + # 0.15.9 - 2024-10-24 ### Fixed diff --git a/db/data/20240610170930_remove_points_without_coordinates.rb b/db/data/20240610170930_remove_points_without_coordinates.rb index b38e72f..b864767 100644 --- a/db/data/20240610170930_remove_points_without_coordinates.rb +++ b/db/data/20240610170930_remove_points_without_coordinates.rb @@ -12,7 +12,7 @@ def up Rails.logger.info 'Points without coordinates removed.' - StatCreatingJob.perform_later(User.pluck(:id)) + BulkStatsCalculatingJob.perform_later(User.pluck(:id)) end def down