Skip to content

Commit b356e86

Browse files
Merge pull request #307 from wazo-platform/bump-version-25.09
bump version (25.09) bump version (25.09) Reviewed-by: wazo-community-zuul[bot]
2 parents 0cdf48d + 37ae4c5 commit b356e86

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""bump_version_25_09
2+
3+
Revision ID: 3131b2ccb06f
4+
Revises: aa8651c694fc
5+
6+
"""
7+
8+
import sqlalchemy as sa
9+
10+
from alembic import op
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = '3131b2ccb06f'
15+
down_revision = 'aa8651c694fc'
16+
17+
18+
def upgrade():
19+
infos = sa.sql.table('infos', sa.sql.column('wazo_version'))
20+
op.execute(infos.update().values(wazo_version='25.09'))
21+
22+
23+
def downgrade():
24+
pass

populate/populate.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,6 @@ INSERT INTO "provisioning" VALUES(DEFAULT, '', '', 0, 8667);
548548

549549
/* The UUID "populate-uuid" will be replaced by pg-populate-db */
550550
/* The version is bumped automatically during the release process */
551-
INSERT INTO "infos" (uuid, wazo_version, live_reload_enabled, timezone, configured) VALUES ('populate-uuid', '25.08', 'True', 'Europe/Paris', 'False');
551+
INSERT INTO "infos" (uuid, wazo_version, live_reload_enabled, timezone, configured) VALUES ('populate-uuid', '25.09', 'True', 'Europe/Paris', 'False');
552552

553553
COMMIT;

0 commit comments

Comments
 (0)