diff --git a/CHANGELOG.md b/CHANGELOG.md index e4eb9211..daa26fcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## `v0.0.35` + +### Features + +- Added the `cosmes/registry` package with the following additions: + - APIs to dynamically query for data in Chain Registry + - Util function to transform Chain Registry data to Keplr's chain info + +### Miscellaneous + +- The `toBaseAccount` utility can now handle all vesting account types + ## `v0.0.34` ### Fixes diff --git a/README.md b/README.md index a1fcbb34..e1c49945 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ A tree-shakeable, framework agnostic, [pure ESM](https://gist.github.com/sindres - **Fully tree-shakeable**: import and bundle only the modules you need - **Framework agnostic**: integrate with any web framework (React, Vue, Svelte, etc.) -- **Lightweight and minimal**: 143 KB gzipped to connect a React app to Keplr via browser extension or WalletConnect (see [benchmarks](#benchmarks)) +- **Lightweight and minimal**: 144 KB gzipped to connect a React app to Keplr via browser extension or WalletConnect (see [benchmarks](#benchmarks)) - **Uses modern web APIs**: no dependencies on Node.js and minimal dependencies on third-party libraries where possible - **Supports modern bundlers**: works with Vite, SWC, Rollup, etc. - **Fully typed**: written in TypeScript and ships with type definitions diff --git a/package.json b/package.json index ddbfc167..267cf5d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmes", - "version": "0.0.34", + "version": "0.0.35", "private": false, "packageManager": "pnpm@8.3.0", "sideEffects": false,