diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a5f51..6f0feae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to the Gitea Mirror project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.12.0] - 2025-01-27 + +### Fixed +- Fixed SQLite "no such table: mirror_jobs" error during application startup +- Implemented automatic database table creation during database initialization +- Resolved database schema inconsistencies between development and production environments + +### Improved +- Enhanced database initialization process with automatic table creation and indexing +- Added comprehensive error handling for database table creation +- Integrated database repair functionality into application startup for better reliability + ## [2.5.3] - 2025-05-22 ### Added diff --git a/package.json b/package.json index 5ff1e1c..24d4f74 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitea-mirror", "type": "module", - "version": "2.11.2", + "version": "2.12.0", "engines": { "bun": ">=1.2.9" },