chore: fix concurrency group sims and math changelog (#16462)

This commit is contained in:
Julien Robert 2023-06-08 22:04:22 +02:00 committed by GitHub
parent 9b9e319d1a
commit bf8053cdfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -8,7 +8,7 @@ on:
types: [published]
concurrency:
group: ci-${{ github.ref }}-sims-047
group: ci-${{ github.ref }}-sims-050
cancel-in-progress: true
jobs:

View File

@ -36,6 +36,10 @@ Ref: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.j
## [Unreleased]
## Improvements
* [#16263](https://github.com/cosmos/cosmos-sdk/pull/16263) Improved math/Int.Size by computing the decimal digits count instead of firstly invoking .Marshal() then checking the length
### Bug Fixes
* [#16266](https://github.com/cosmos/cosmos-sdk/pull/16266) fix: legacy dec power mut zero exponent precision.
@ -44,8 +48,6 @@ Ref: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.j
### Improvements
* [#16263](https://github.com/cosmos/cosmos-sdk/pull/16263) Improved math/Int.Size by computing the decimal digits count instead of firstly invoking .Marshal() then checking the length
* [#15768](https://github.com/cosmos/cosmos-sdk/pull/15768) Removed the second call to the `init` method for the global variable `grand`.
* [#16141](https://github.com/cosmos/cosmos-sdk/pull/16141) Speedup `LegacyDec.ApproxRoot` and `LegacyDec.ApproxSqrt`.