Skip to content

Commit 039be11

Browse files
committed
Release 4.28.0
1 parent a9be5c5 commit 039be11

File tree

14 files changed

+37
-37
lines changed

14 files changed

+37
-37
lines changed

packages/dsw-command-queue/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-command-queue"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Library for working with command queue and persistent commands"
55
readme = "README.md"
66
keywords = ["dsw", "subscriber", "publisher", "database", "queue", "processing"]
@@ -23,7 +23,7 @@ dependencies = [
2323
"func-timeout",
2424
"tenacity",
2525
# DSW
26-
"dsw-database==4.28.0rc2",
26+
"dsw-database==4.28.0",
2727
]
2828

2929
[project.urls]

packages/dsw-config/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-config"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Library for DSW config manipulation"
55
readme = "README.md"
66
keywords = ["dsw", "config", "yaml", "parser"]

packages/dsw-data-seeder/dsw/data_seeder/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>'
77
NULL_UUID = '00000000-0000-0000-0000-000000000000'
88
PROG_NAME = 'dsw-data-seeder'
9-
VERSION = '4.28.0rc2'
9+
VERSION = '4.28.0'
1010

1111
VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
1212
VAR_WORKDIR_PATH = 'WORKDIR_PATH'

packages/dsw-data-seeder/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-data-seeder"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Worker for seeding DSW data"
55
readme = "README.md"
66
keywords = ["data", "database", "seed", "storage"]
@@ -25,10 +25,10 @@ dependencies = [
2525
"sentry-sdk",
2626
"tenacity",
2727
# DSW
28-
"dsw-command-queue==4.28.0rc2",
29-
"dsw-config==4.28.0rc2",
30-
"dsw-database==4.28.0rc2",
31-
"dsw-storage==4.28.0rc2",
28+
"dsw-command-queue==4.28.0",
29+
"dsw-config==4.28.0",
30+
"dsw-database==4.28.0",
31+
"dsw-storage==4.28.0",
3232
]
3333

3434
[project.urls]

packages/dsw-database/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-database"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Library for managing DSW database"
55
readme = "README.md"
66
keywords = ["dsw", "database"]
@@ -22,7 +22,7 @@ dependencies = [
2222
"psycopg[binary]",
2323
"tenacity",
2424
# DSW
25-
"dsw-config==4.28.0rc2",
25+
"dsw-config==4.28.0",
2626
]
2727

2828
[project.urls]

packages/dsw-document-worker/dsw/document_worker/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
PACKAGE_NAME = 'dsw-document-worker'
1111
PLUGINS_ENTRYPOINT = 'dsw_document_worker_plugins'
1212
PROG_NAME = 'docworker'
13-
VERSION = '4.28.0rc2'
13+
VERSION = '4.28.0'
1414

1515
VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
1616
VAR_WORKDIR_PATH = 'WORKDIR_PATH'

packages/dsw-document-worker/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-document-worker"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Worker for assembling and transforming documents"
55
readme = "README.md"
66
keywords = ["documents", "generation", "jinja2", "pandoc", "worker"]
@@ -35,10 +35,10 @@ dependencies = [
3535
"weasyprint",
3636
"XlsxWriter",
3737
# DSW
38-
"dsw-command-queue==4.28.0rc2",
39-
"dsw-config==4.28.0rc2",
40-
"dsw-database==4.28.0rc2",
41-
"dsw-storage==4.28.0rc2",
38+
"dsw-command-queue==4.28.0",
39+
"dsw-config==4.28.0",
40+
"dsw-database==4.28.0",
41+
"dsw-storage==4.28.0",
4242
]
4343

4444
[project.urls]

packages/dsw-mailer/dsw/mailer/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
DEFAULT_ENCODING = 'utf-8'
66
NULL_UUID = '00000000-0000-0000-0000-000000000000'
77
PROG_NAME = 'dsw-mailer'
8-
VERSION = '4.28.0rc2'
8+
VERSION = '4.28.0'
99

1010
VAR_APP_CONFIG_PATH = 'APPLICATION_CONFIG_PATH'
1111
VAR_WORKDIR_PATH = 'WORKDIR_PATH'

packages/dsw-mailer/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-mailer"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Worker for sending email notifications"
55
readme = "README.md"
66
keywords = ["email", "jinja2", "notification", "template"]
@@ -30,10 +30,10 @@ dependencies = [
3030
"sentry-sdk",
3131
"tenacity",
3232
# DSW
33-
"dsw-command-queue==4.28.0rc2",
34-
"dsw-config==4.28.0rc2",
35-
"dsw-database==4.28.0rc2",
36-
"dsw-storage==4.28.0rc2",
33+
"dsw-command-queue==4.28.0",
34+
"dsw-config==4.28.0",
35+
"dsw-database==4.28.0",
36+
"dsw-storage==4.28.0",
3737
]
3838

3939
[project.urls]

packages/dsw-models/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dsw-models"
3-
version = "4.28.0rc2"
3+
version = "4.28.0"
44
description = "Library with DSW models and basic IO operations"
55
readme = "README.md"
66
keywords = ["dsw", "config", "yaml", "parser"]

0 commit comments

Comments
 (0)