Skip to content

Commit

Permalink
Version 2023.1.1.
Browse files Browse the repository at this point in the history
DB schema version change 38->39.
  • Loading branch information
titov-vv committed Jan 4, 2023
1 parent 3920995 commit 11af4f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jal/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2022.12.4"
__version__ = "2023.1.1"
2 changes: 1 addition & 1 deletion jal/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Setup:
DB_PATH = "jal.sqlite"
DB_CONNECTION = "JAL.DB"
DB_REQUIRED_VERSION = 38
DB_REQUIRED_VERSION = 39
SQLITE_MIN_VERSION = "3.35"
MAIN_WND_NAME = "JAL_MainWindow"
INIT_SCRIPT_PATH = 'jal_init.sql'
Expand Down
2 changes: 1 addition & 1 deletion jal/jal_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ END;


-- Initialize default values for settings
INSERT INTO settings(id, name, value) VALUES (0, 'SchemaVersion', 38);
INSERT INTO settings(id, name, value) VALUES (0, 'SchemaVersion', 39);
INSERT INTO settings(id, name, value) VALUES (1, 'TriggersEnabled', 1);
INSERT INTO settings(id, name, value) VALUES (2, 'BaseCurrency', 1);
INSERT INTO settings(id, name, value) VALUES (3, 'Language', 1);
Expand Down

0 comments on commit 11af4f2

Please sign in to comment.