diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c45d3a..9ca510b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [3.0.0](https://github.com/NibiruChain/ts-sdk/compare/v2.0.1...v3.0.0) (2024-02-05) + +### Bug Fixes + +- fix merge ([4f93be8](https://github.com/NibiruChain/ts-sdk/commit/4f93be8b4a21b41035336fa08a0bbc6d6c8daf89)) +- gql where args ([#298](https://github.com/NibiruChain/ts-sdk/issues/298)) ([b57ef0a](https://github.com/NibiruChain/ts-sdk/commit/b57ef0a0de5f44cf539fb183d8e2c048c6c9dfef)) +- more file reorg ([#300](https://github.com/NibiruChain/ts-sdk/issues/300)) ([d6a053a](https://github.com/NibiruChain/ts-sdk/commit/d6a053a1296cb2630e700521357ebb0e03c3988f)) + +### Miscellaneous Chores + +- pr title lint workflow ([#293](https://github.com/NibiruChain/ts-sdk/issues/293)) ([b5dd050](https://github.com/NibiruChain/ts-sdk/commit/b5dd050ac4064203f11b585a059f5db47707ede4)) + +### Code Refactors + +- tests ([#301](https://github.com/NibiruChain/ts-sdk/issues/301)) ([e14b83b](https://github.com/NibiruChain/ts-sdk/commit/e14b83b5a4366713d0b25177b73cbd036300d8c2)) + ### [2.0.1](https://github.com/NibiruChain/ts-sdk/compare/v2.0.0...v2.0.1) (2024-01-24) ### Miscellaneous Chores diff --git a/package.json b/package.json index 923e148a..52e8353d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nibiruchain/nibijs", "description": "The TypeScript SDK for the Nibiru blockchain.", - "version": "2.0.1", + "version": "3.0.0", "license": "MIT", "repository": { "type": "git", diff --git a/src/gql/query/index.ts b/src/gql/query/index.ts index c1fe4cb9..fd5d833e 100644 --- a/src/gql/query/index.ts +++ b/src/gql/query/index.ts @@ -9,8 +9,8 @@ export * from "./featureFlags" export * from "./governance" export * from "./ibc" export * from "./inflation" -export * from "./marketing" export * from "./markPriceCandles" +export * from "./marketing" export * from "./oracle" export * from "./perp" export * from "./redelegations" @@ -18,8 +18,8 @@ export * from "./spotLpPositions" export * from "./spotPoolCreated" export * from "./spotPoolExited" export * from "./spotPoolJoined" -export * from "./spotPools" export * from "./spotPoolSwap" +export * from "./spotPools" export * from "./stats" export * from "./unbondings" export * from "./users"