Skip to content

Commit

Permalink
[Chore] 1.5.0 release
Browse files Browse the repository at this point in the history
Problem: We have provided deploy options to let the user choose where
to store the metadata, added the `total_supply` field to the contract,
inlined some functions for performance and cleaned up the docs.
For this reason, we want to make a new release.

Solution: bump Haskell package version, update changelog, update
transaction costs table in the README.
  • Loading branch information
pasqu4le committed Dec 21, 2020
1 parent 956f2e3 commit 496a06f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ SPDX-License-Identifier: MIT
<!-- Don't forget to update the gas/transaction costs tables in the
README when a new version is released. -->

## 1.5.0

* [#144](https://github.com/tqtezos/stablecoin/pull/144)
* Add `total_supply` field to the contract.

* [142](https://github.com/tqtezos/stablecoin/pull/142)
* [#142](https://github.com/tqtezos/stablecoin/pull/142)
* Deploy TZIP-16 metadata to an external contract by default.
* Provide deploy options `--contract-metadata-in-place` and
`--contract-metadata-off-chain` to let user to embed the metadata
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ Please refer to the [`haskell/`](/haskell/) directory for details.
## Gas / Transaction costs

The tables below show the gas and transaction costs of both versions (FA1.2 and FA2) of
the stablecoin contract [v1.4.0](https://github.com/tqtezos/stablecoin/releases/tag/v1.4.0) in Delphinet.
the stablecoin contract [v1.5.0](https://github.com/tqtezos/stablecoin/releases/tag/v1.5.0) in Delphinet.

### Delphinet

* [FA1.2 operations](https://better-call.dev/delphinet/KT1AMAqrzMQqB6QK724Bagp8LL2JrdXEF3By/operations)
* [FA2 operations](https://better-call.dev/delphinet/KT1G3n8sDudm1FzCn9JYa5BM2QRaxgKry8My/operations)
* [FA1.2 operations](https://better-call.dev/delphinet/KT1P4wqBia7AmRFQqrzfPcjdFYiiCMffE9xD/operations)
* [FA2 operations](https://better-call.dev/delphinet/KT1VVJ8oEGaMX93PqcuFDVojHncySDEfxnrF/operations)

| | FA1.2 Gas cost | FA2 Gas cost | FA1.2 Tx cost | FA2 Tx cost |
| ----------- | -------------- | ------------ | ------------- | ----------- |
| origination | 75928 | 72689 | 3.942008| 3.87493 ꜩ |
| transfer | 79196 | 73293 | 0.007978| 0.007702|
| origination | 65562 | 63843 | 2.867507| 2.868852 ꜩ |
| transfer | 67566 | 66254 | 0.007115| 0.006998|

### Measuring

Expand Down
2 changes: 1 addition & 1 deletion haskell/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<<: !include "./hpack/module.yaml"

name: stablecoin
version: 1.4.0
version: 1.5.0

extra-source-files:
- README.md
Expand Down

0 comments on commit 496a06f

Please sign in to comment.