diff --git a/.changeset/clever-flies-sneeze.md b/.changeset/clever-flies-sneeze.md deleted file mode 100644 index 9852c0cf..00000000 --- a/.changeset/clever-flies-sneeze.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -"@abstract-money/cli": minor -"@abstract-money/core": minor -"@abstract-money/cosmwasm-utils": minor -"@abstract-money/react": minor ---- - -First release of **abstract.js** revamped SDK! - -New SDK structure involves multiple packages, each with its own dependencies. -This allows for more flexibility and better control over the SDK. - -Old-new packages mapping: - -- `@abstract-money/abstract.js` -> `@abstract-money/core` -- `@abstract-money/abstract.js-react` -> `@abstract-money/react` -- `@abstract-money/cosmwasm` -> `@abstract-money/cosmwasm-utils` - -A new package was introduced, `@abstract-money/cli` that adopts a quicker -development setup when using Abstract contracts. -A developer is now not obligated to download the Abstract contract schemas himself, -and can simply enumerate the required contracts via the `registry` plugin, -available at `@abstract-money/cli/plugins`, and the CLI will download and cache them -itself. -This feature also allowed to cut out the boilerplate code from the old `@abstract-money/abstract.js`, -yet keeping the backwards compatibility. diff --git a/examples/wagemos-cosmoskit-nextjs/CHANGELOG.md b/examples/wagemos-cosmoskit-nextjs/CHANGELOG.md new file mode 100644 index 00000000..7c1b0ffd --- /dev/null +++ b/examples/wagemos-cosmoskit-nextjs/CHANGELOG.md @@ -0,0 +1,9 @@ +# wagemos-cosmoskit-nextjs + +## 0.1.1 + +### Patch Changes + +- Updated dependencies [[`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0)]: + - @abstract-money/core@0.1.0 + - @abstract-money/react@0.1.0 diff --git a/examples/wagemos-cosmoskit-nextjs/package.json b/examples/wagemos-cosmoskit-nextjs/package.json index df9ed98e..684da21c 100644 --- a/examples/wagemos-cosmoskit-nextjs/package.json +++ b/examples/wagemos-cosmoskit-nextjs/package.json @@ -1,6 +1,6 @@ { "name": "wagemos-cosmoskit-nextjs", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "dev": "next dev", diff --git a/examples/wagemos-graz-nextjs/CHANGELOG.md b/examples/wagemos-graz-nextjs/CHANGELOG.md new file mode 100644 index 00000000..c7eb4cf6 --- /dev/null +++ b/examples/wagemos-graz-nextjs/CHANGELOG.md @@ -0,0 +1,9 @@ +# wagemos-graz-nextjs + +## 0.1.1 + +### Patch Changes + +- Updated dependencies [[`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0)]: + - @abstract-money/core@0.1.0 + - @abstract-money/react@0.1.0 diff --git a/examples/wagemos-graz-nextjs/package.json b/examples/wagemos-graz-nextjs/package.json index 45d13cf3..9e414971 100644 --- a/examples/wagemos-graz-nextjs/package.json +++ b/examples/wagemos-graz-nextjs/package.json @@ -1,6 +1,6 @@ { "name": "wagemos-graz-nextjs", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 00000000..e0d0c4e8 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,25 @@ +# @abstract-money/cli + +## 0.1.0 + +### Minor Changes + +- [`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0) Thanks [@dalechyn](https://github.com/dalechyn)! - First release of **abstract.js** revamped SDK! + + New SDK structure involves multiple packages, each with its own dependencies. + This allows for more flexibility and better control over the SDK. + + Old-new packages mapping: + + - `@abstract-money/abstract.js` -> `@abstract-money/core` + - `@abstract-money/abstract.js-react` -> `@abstract-money/react` + - `@abstract-money/cosmwasm` -> `@abstract-money/cosmwasm-utils` + + A new package was introduced, `@abstract-money/cli` that adopts a quicker + development setup when using Abstract contracts. + A developer is now not obligated to download the Abstract contract schemas himself, + and can simply enumerate the required contracts via the `registry` plugin, + available at `@abstract-money/cli/plugins`, and the CLI will download and cache them + itself. + This feature also allowed to cut out the boilerplate code from the old `@abstract-money/abstract.js`, + yet keeping the backwards compatibility. diff --git a/packages/cli/package.json b/packages/cli/package.json index a5d79ced..38c7c65c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@abstract-money/cli", - "version": "0.0.0", + "version": "0.1.0", "description": "CLI tool to generate modules to build with Abstract SDK", "homepage": "https://github.com/AbstractSDK/abstract.js#readme", "author": "h0tw4t3r ", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 7d0a8732..91ba0fab 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,6 +1,34 @@ +## 0.1.0 +### Minor Changes + +- [`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0) Thanks [@dalechyn](https://github.com/dalechyn)! - First release of **abstract.js** revamped SDK! + + New SDK structure involves multiple packages, each with its own dependencies. + This allows for more flexibility and better control over the SDK. + + Old-new packages mapping: + + - `@abstract-money/abstract.js` -> `@abstract-money/core` + - `@abstract-money/abstract.js-react` -> `@abstract-money/react` + - `@abstract-money/cosmwasm` -> `@abstract-money/cosmwasm-utils` + + A new package was introduced, `@abstract-money/cli` that adopts a quicker + development setup when using Abstract contracts. + A developer is now not obligated to download the Abstract contract schemas himself, + and can simply enumerate the required contracts via the `registry` plugin, + available at `@abstract-money/cli/plugins`, and the CLI will download and cache them + itself. + This feature also allowed to cut out the boilerplate code from the old `@abstract-money/abstract.js`, + yet keeping the backwards compatibility. + +### Patch Changes + +- Updated dependencies [[`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0)]: + - @abstract-money/cosmwasm-utils@0.1.0 # Change Log + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) @@ -17,9 +45,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.19.0] - 2023-09-07 ### Added + - Abstract SDK 0.19.0 ### Changed + - AbstractAccount.createAccountWithGovernance accepts an object instead of individual parameters - Manager.installModule => installModules - Additional `installModules` attribute on AccountFactory.createAccount @@ -31,6 +61,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.17.9] ### Added + - Owner cache on AbstractClient ## [0.13.0] - 2023-03-15 @@ -38,47 +69,57 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added ### Changed + - ANS Host keys -> ids, entries -> metadatas ### Fixed ## [0.11.0] - 2023-02-08 + Abstract 0.8.0 ### Added ### Changed + - Version Control Breaking changes ### Fixed - ## [0.10.0] - 2023-01-24 + ### Added ### Changed + - Abstract addresses now use hyphens instead of underscores ### Fixed ## [0.9.2] - 2023-01-12 + ### Added ### Changed + - Updated VC client with list modules ### Fixed ## [0.9.0] - 2023-01-12 + ### Added ### Changed + - Updated ANS types to be compatible with abstract [0.5.2] ### Fixed ## [0.8.2] - 2023-01-12 + ### Added + - composeExecuteOnModule in AbstractOsClient ### Changed @@ -86,17 +127,21 @@ Abstract 0.8.0 ### Fixed ## [0.7.1] - 2022-01-09 + ### Added ### Changed ### Fixed + - undefined return on index ## [0.7.0] - 2022-01-09 + ### Added ### Changed + - Version control updated to Abstract 0.5.0 ### Fixed @@ -104,7 +149,9 @@ Abstract 0.8.0 ## [0.6.1] - 2022-01-08 ### Added + #### AnsQueryClient + - Channel, contract filter and list ### Changed @@ -114,9 +161,11 @@ Abstract 0.8.0 ## [0.6.0] - 2022-01-08 ### Added + - `AnsQueryClient` with better list and filter methods for assets ### Changed + - `AnsQueryClient` (generated) -> `AnsHostQueryClient` ### Fixed diff --git a/packages/core/package.json b/packages/core/package.json index d1d7771b..7a231a19 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@abstract-money/core", - "version": "0.0.0", + "version": "0.1.0", "description": "Typings for Abstract smart contracts", "homepage": "https://github.com/AbstractSDK/abstract.js#readme", "author": "adairrr ", diff --git a/packages/cosmwasm-utils/CHANGELOG.md b/packages/cosmwasm-utils/CHANGELOG.md new file mode 100644 index 00000000..d600bdf8 --- /dev/null +++ b/packages/cosmwasm-utils/CHANGELOG.md @@ -0,0 +1,25 @@ +# @abstract-money/cosmwasm-utils + +## 0.1.0 + +### Minor Changes + +- [`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0) Thanks [@dalechyn](https://github.com/dalechyn)! - First release of **abstract.js** revamped SDK! + + New SDK structure involves multiple packages, each with its own dependencies. + This allows for more flexibility and better control over the SDK. + + Old-new packages mapping: + + - `@abstract-money/abstract.js` -> `@abstract-money/core` + - `@abstract-money/abstract.js-react` -> `@abstract-money/react` + - `@abstract-money/cosmwasm` -> `@abstract-money/cosmwasm-utils` + + A new package was introduced, `@abstract-money/cli` that adopts a quicker + development setup when using Abstract contracts. + A developer is now not obligated to download the Abstract contract schemas himself, + and can simply enumerate the required contracts via the `registry` plugin, + available at `@abstract-money/cli/plugins`, and the CLI will download and cache them + itself. + This feature also allowed to cut out the boilerplate code from the old `@abstract-money/abstract.js`, + yet keeping the backwards compatibility. diff --git a/packages/cosmwasm-utils/package.json b/packages/cosmwasm-utils/package.json index 1f20db69..fcc0698a 100644 --- a/packages/cosmwasm-utils/package.json +++ b/packages/cosmwasm-utils/package.json @@ -1,6 +1,6 @@ { "name": "@abstract-money/cosmwasm-utils", - "version": "0.0.0", + "version": "0.1.0", "description": "Cosmwasm utils", "author": "adairrr", "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md new file mode 100644 index 00000000..b1fd9f4b --- /dev/null +++ b/packages/react/CHANGELOG.md @@ -0,0 +1,30 @@ +# @abstract-money/react + +## 0.1.0 + +### Minor Changes + +- [`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0) Thanks [@dalechyn](https://github.com/dalechyn)! - First release of **abstract.js** revamped SDK! + + New SDK structure involves multiple packages, each with its own dependencies. + This allows for more flexibility and better control over the SDK. + + Old-new packages mapping: + + - `@abstract-money/abstract.js` -> `@abstract-money/core` + - `@abstract-money/abstract.js-react` -> `@abstract-money/react` + - `@abstract-money/cosmwasm` -> `@abstract-money/cosmwasm-utils` + + A new package was introduced, `@abstract-money/cli` that adopts a quicker + development setup when using Abstract contracts. + A developer is now not obligated to download the Abstract contract schemas himself, + and can simply enumerate the required contracts via the `registry` plugin, + available at `@abstract-money/cli/plugins`, and the CLI will download and cache them + itself. + This feature also allowed to cut out the boilerplate code from the old `@abstract-money/abstract.js`, + yet keeping the backwards compatibility. + +### Patch Changes + +- Updated dependencies [[`33390a1`](https://github.com/AbstractSDK/abstract.js/commit/33390a1ca0f7c73ff39dd7fb494802b8cc2e9de0)]: + - @abstract-money/core@0.1.0 diff --git a/packages/react/package.json b/packages/react/package.json index 0a2336d3..57cb2546 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@abstract-money/react", - "version": "0.0.0", + "version": "0.1.0", "description": "React Hooks for Abstract SDK", "homepage": "https://github.com/AbstractSDK/abstract.js#readme", "author": "h0tw4t3r ", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4c6fd8b5..a681739d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,9 +1,5 @@ lockfileVersion: '6.0' -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - overrides: esbuild: 0.15.13 @@ -17014,3 +17010,7 @@ packages: react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: false + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false