Releases: celo-org/developer-tooling
Releases · celo-org/developer-tooling
@celo/[email protected]
@celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- #94
45d156d
Thanks @aaronmgdr! - Bump all @Azure packages to latest versions. These includes several major bumps which should not affect use in this library. For More details- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/CHANGELOG.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/BREAKING_CHANGES.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-secrets/CHANGELOG.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-keys/CHANGELOG.md
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- #94
45d156d
Thanks @aaronmgdr! - Bump all @Azure packages to latest versions. These includes several major bumps which should not affect use in this library. For More details- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/CHANGELOG.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/BREAKING_CHANGES.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-secrets/CHANGELOG.md
- https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-keys/CHANGELOG.md
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Patch Changes
- Updated dependencies [
6b2e34c
]:- @celo/[email protected]
- @celo/[email protected]
@celo/[email protected]
Major Changes
-
#105
6b2e34c
Thanks @aaronmgdr! - Remove export compareBNThis would have been used to sort BN.js numbers. Generic comparator functions are not really the scope of this library. Removing it allows the bn.js dependency to be removed too. If you were using this function it can be re-implemented as
export function compareBN(a: BN, b: BN) { if (a.eq(b)) { return 0 } else if (a.lt(b)) { return -1 } else { return 1 } }