Skip to content

Commit 641dd5a

Browse files
authored
Merge pull request #315 from ds-wizard/release/4.28.1
Release 4.28.1
2 parents 4cd776e + 7f6040e commit 641dd5a

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

registry-public/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: registry-public
2-
version: '4.28.0'
2+
version: '4.28.1'
33
synopsis: Registry Public
44
description: Registry Public
55
category: Web

registry-server/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: registry-server
2-
version: '4.28.0'
2+
version: '4.28.1'
33
synopsis: Engine Registry
44
description: Engine Registry
55
category: Web

registry-server/src/Registry/Api/Handler/Swagger/Api.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ swagger =
4141
s._swaggerInfo
4242
{ _infoTitle = "Registry API"
4343
, _infoDescription = Just "API specification for Registry"
44-
, _infoVersion = "4.28.0"
44+
, _infoVersion = "4.28.1"
4545
, _infoLicense =
4646
Just $
4747
License

shared-common/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shared-common
2-
version: '4.28.0'
2+
version: '4.28.1'
33
synopsis: Engine Shared
44
description: Engine Shared
55
category: Web

wizard-public/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wizard-public
2-
version: '4.28.0'
2+
version: '4.28.1'
33
synopsis: Wizard Public
44
description: Wizard Public
55
category: Web

wizard-server/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wizard-server
2-
version: '4.28.0'
2+
version: '4.28.1'
33
synopsis: Engine Wizard
44
description: Engine Wizard
55
category: Web

wizard-server/src/Wizard/Api/Handler/Swagger/Api.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ swagger =
148148
s._swaggerInfo
149149
{ _infoTitle = "Wizard API"
150150
, _infoDescription = Just "API specification for Wizard"
151-
, _infoVersion = "4.28.0"
151+
, _infoVersion = "4.28.1"
152152
, _infoLicense =
153153
Just $
154154
License

wizard-server/src/Wizard/Service/Tenant/TenantService.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,11 @@ createConfig uuid now = do
162162
createLocale :: U.UUID -> UTCTime -> AppContextM Locale
163163
createLocale tntUuid now = do
164164
runInTransaction $ do
165+
uuid <- liftIO generateUuid
165166
let locale =
166167
localeDefault
167-
{ tenantUuid = tntUuid
168+
{ uuid = uuid
169+
, tenantUuid = tntUuid
168170
, createdAt = now
169171
, updatedAt = now
170172
}

0 commit comments

Comments
 (0)