Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 74c2572

Browse files
committed
up version, change to log in with Daml Hub
1 parent f4c4b03 commit 74c2572

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This can be done by rebuilding the project using `make clean && make package`.
4141
Alternatively, to only build the DAR file and regenerate the TypeScript bindings:
4242
```
4343
daml build
44-
daml codegen js .daml/dist/da-marketplace-0.1.17.dar -o daml.js
44+
daml codegen js .daml/dist/da-marketplace-0.1.18.dar -o daml.js
4545
cd ui
4646
yarn install --force --frozen-lockfile
4747
```

dabl-meta.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
catalog:
22
name: da-marketplace
3-
version: 0.1.17
3+
version: 0.1.18
44
short_description: DA Marketplace
55
description: A marketplace for issuing and trading digital tokens.
66
release_date: 2020-10-14
@@ -10,7 +10,7 @@ catalog:
1010
tags: [ dabl-sample-app, application ]
1111
icon_file: marketplace.svg
1212
subdeployments:
13-
- da-marketplace-model-0.1.17.dar
14-
- da-marketplace-triggers-0.1.17.dar
15-
- da-marketplace-exberry-adapter-0.1.17.tar.gz
16-
- da-marketplace-ui-0.1.17.zip
13+
- da-marketplace-model-0.1.18.dar
14+
- da-marketplace-triggers-0.1.18.dar
15+
- da-marketplace-exberry-adapter-0.1.18.tar.gz
16+
- da-marketplace-ui-0.1.18.zip

daml.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ parties:
1414
- Exchange
1515
- Broker
1616
- Ccp
17-
version: 0.1.17
17+
version: 0.1.18
1818
dependencies:
1919
- daml-prim
2020
- daml-stdlib

exberry_adapter/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='marketplace-exchange-adapter',
4-
version='0.1.17',
4+
version='0.1.18',
55
description='Daml Marketplace Exchange Adapter',
66
author='Digital Asset',
77
url='daml.com',

triggers/daml.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ parties:
1111
- Public
1212
- Exchange
1313
- Broker
14-
version: 0.1.17
14+
version: 0.1.18
1515
# trigger-dependencies-begin
1616
dependencies:
1717
- daml-prim
1818
- daml-stdlib
1919
- daml-trigger
2020
data-dependencies:
21-
- ../.daml/dist/da-marketplace-0.1.17.dar
21+
- ../.daml/dist/da-marketplace-0.1.18.dar
2222
sandbox-options:
2323
- --wall-clock-time

ui/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
{
12
"name": "da-marketplace",
2-
"version": "0.1.17",
3+
"version": "0.1.18",
34
"private": true,
45
"dependencies": {
5-
"@daml.js/da-marketplace": "file:../daml.js/da-marketplace-0.1.17",
6+
"@daml.js/da-marketplace": "file:../daml.js/da-marketplace-0.1.18",
67
"@daml/hub-react": "0.1.0",
78
"@daml/ledger": "1.10.0",
89
"@daml/react": "1.10.0",

ui/src/components/LoginScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ const DablLoginForm: React.FC<Props> = ({ onLogin }) => {
331331
icon='right arrow blue'
332332
labelPosition='right'
333333
className='dabl-login-button'
334-
content={<p className='bold'>Log in with DABL</p>}
334+
content={<p className='bold'>Log in with Daml Hub</p>}
335335
onClick={handleDablLogin}
336336
/>
337337
</Form>

0 commit comments

Comments
 (0)