Skip to content

Commit 997ab8d

Browse files
committed
Release 4.0.0-RC.2
1 parent 3c0c0b6 commit 997ab8d

File tree

15 files changed

+35
-29
lines changed

15 files changed

+35
-29
lines changed

packages/dsw-command-queue/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-command-queue'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Library for working with command queue and persistent commands'
99
readme = 'README.md'
1010
keywords = ['dsw', 'subscriber', 'publisher', 'database', 'queue', 'processing']
@@ -25,7 +25,7 @@ classifiers = [
2525
requires-python = '>=3.10, <4'
2626
dependencies = [
2727
# DSW
28-
"dsw-database==4.0.0rc1",
28+
"dsw-database==4.0.0rc2",
2929
]
3030

3131
[project.urls]

packages/dsw-config/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-config'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Library for DSW config manipulation'
99
readme = 'README.md'
1010
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,4 +6,4 @@
66
DEFAULT_PLACEHOLDER = '<<|TENANT-ID|>>'
77
NULL_UUID = '00000000-0000-0000-0000-000000000000'
88
PROG_NAME = 'dsw-data-seeder'
9-
VERSION = '3.28.0'
9+
VERSION = '4.0.0'

packages/dsw-data-seeder/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-data-seeder'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Worker for seeding DSW data'
99
readme = 'README.md'
1010
keywords = ['data', 'database', 'seed', 'storage']
@@ -29,10 +29,10 @@ dependencies = [
2929
'sentry-sdk',
3030
'tenacity',
3131
# DSW
32-
"dsw-command-queue==4.0.0rc1",
33-
"dsw-config==4.0.0rc1",
34-
"dsw-database==4.0.0rc1",
35-
"dsw-storage==4.0.0rc1",
32+
"dsw-command-queue==4.0.0rc2",
33+
"dsw-config==4.0.0rc2",
34+
"dsw-database==4.0.0rc2",
35+
"dsw-storage==4.0.0rc2",
3636
]
3737

3838
[project.urls]

packages/dsw-database/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-database'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Library for managing DSW database'
99
readme = 'README.md'
1010
keywords = ['dsw', 'database']
@@ -26,7 +26,7 @@ dependencies = [
2626
'psycopg[binary]',
2727
'tenacity',
2828
# DSW
29-
"dsw-config==4.0.0rc1",
29+
"dsw-config==4.0.0rc2",
3030
]
3131

3232
[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
@@ -6,7 +6,7 @@
66
EXIT_SUCCESS = 0
77
NULL_UUID = '00000000-0000-0000-0000-000000000000'
88
PROG_NAME = 'docworker'
9-
VERSION = '3.28.0'
9+
VERSION = '4.0.0'
1010

1111

1212
class DocumentState:

packages/dsw-document-worker/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-document-worker'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Worker for assembling and transforming documents'
99
readme = 'README.md'
1010
keywords = ['documents', 'generation', 'jinja2', 'pandoc', 'worker']
@@ -40,10 +40,10 @@ dependencies = [
4040
'weasyprint',
4141
'XlsxWriter',
4242
# DSW
43-
"dsw-command-queue==4.0.0rc1",
44-
"dsw-config==4.0.0rc1",
45-
"dsw-database==4.0.0rc1",
46-
"dsw-storage==4.0.0rc1",
43+
"dsw-command-queue==4.0.0rc2",
44+
"dsw-config==4.0.0rc2",
45+
"dsw-database==4.0.0rc2",
46+
"dsw-storage==4.0.0rc2",
4747
]
4848

4949
[project.urls]

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

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

packages/dsw-mailer/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-mailer'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Worker for sending email notifications'
99
readme = 'README.md'
1010
keywords = ['email', 'jinja2', 'notification', 'template']
@@ -31,9 +31,9 @@ dependencies = [
3131
'sentry-sdk',
3232
'tenacity',
3333
# DSW
34-
"dsw-command-queue==4.0.0rc1",
35-
"dsw-config==4.0.0rc1",
36-
"dsw-database==4.0.0rc1",
34+
"dsw-command-queue==4.0.0rc2",
35+
"dsw-config==4.0.0rc2",
36+
"dsw-database==4.0.0rc2",
3737
]
3838

3939
[project.urls]

packages/dsw-models/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'dsw-models'
7-
version = "4.0.0rc1"
7+
version = "4.0.0rc2"
88
description = 'Library with DSW models and basic IO operations'
99
readme = 'README.md'
1010
keywords = ['dsw', 'config', 'yaml', 'parser']

0 commit comments

Comments
 (0)