Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/publish 0.0.12 #33

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)



## [0.0.8](https://github.com/helium/modular-governance/compare/v0.0.7...v0.0.8) (2023-11-10)



## [0.0.7](https://github.com/helium/modular-governance/compare/v0.0.6...v0.0.7) (2023-11-07)



## [0.0.6](https://github.com/helium/modular-governance/compare/v0.0.4...v0.0.6) (2023-11-06)

**Note:** Version bump only for package modular-governance





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package modular-governance
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/*"
],
"useWorkspaces": true,
"version": "0.0.11"
"version": "0.0.12"
}
20 changes: 20 additions & 0 deletions packages/docsite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)



## [0.0.8](https://github.com/helium/modular-governance/compare/v0.0.7...v0.0.8) (2023-11-10)



## [0.0.7](https://github.com/helium/modular-governance/compare/v0.0.6...v0.0.7) (2023-11-07)



## [0.0.6](https://github.com/helium/modular-governance/compare/v0.0.4...v0.0.6) (2023-11-06)

**Note:** Version bump only for package governance-docs





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package governance-docs
Expand Down
2 changes: 1 addition & 1 deletion packages/docsite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "governance-docs",
"version": "0.0.11",
"version": "0.0.12",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
25 changes: 25 additions & 0 deletions packages/docsite/src/pages/docs/api/organization-wallet-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,24 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| Name | Type | Docs |
| ---- | ---- | ---- |

### updateOrganizationWalletV0

#### Accounts

| Name | Mutability | Signer | Docs |
| ------------------ | ---------- | ------ | ---- |
| payer | mut | yes | |
| organizationWallet | mut | no | |
| organization | immut | no | |
| authority | immut | yes | |
| systemProgram | immut | no | |

#### Args

| Name | Type | Docs |
| ---- | ------------------------------ | ---- |
| args | UpdateOrganizationWalletArgsV0 | |

## Accounts

### OrganizationWalletV0
Expand Down Expand Up @@ -136,6 +154,13 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| disableExecutionOffset | u32 |
| transaction | CompiledTransactionArgV0 |

### UpdateOrganizationWalletArgsV0

| Field | Type |
| --------------- | --------------- |
| name | string |
| proposalConfigs | [object Object] |

### CompiledInstructionV0

| Field | Type |
Expand Down
26 changes: 26 additions & 0 deletions packages/docsite/src/pages/docs/api/proposal-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,21 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| ---- | ----------------- | ---- |
| args | UpdateStateArgsV0 | |

### updateProposalConfigV0

#### Accounts

| Name | Mutability | Signer | Docs |
| -------------- | ---------- | ------ | ---- |
| proposalConfig | mut | no | |
| authority | immut | yes | |

#### Args

| Name | Type | Docs |
| ---- | -------------------------- | ---- |
| args | UpdateProposalConfigArgsV0 | |

## Accounts

### ProposalConfigV0
Expand All @@ -88,6 +103,7 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| onVoteHook | publicKey |
| name | string |
| bumpSeed | u8 |
| authority | publicKey |

### ProposalV0

Expand Down Expand Up @@ -116,6 +132,7 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| voteController | publicKey |
| stateController | publicKey |
| onVoteHook | publicKey |
| authority | publicKey |

### ChoiceArg

Expand All @@ -135,6 +152,15 @@ If you are looking for a quick start guide, check out the [Getting Started](/doc
| choices | ChoiceArg |
| tags | string |

### UpdateProposalConfigArgsV0

| Field | Type |
| --------------- | --------- |
| voteController | publicKey |
| stateController | publicKey |
| onVoteHook | publicKey |
| authority | publicKey |

### UpdateStateArgsV0

| Field | Type |
Expand Down
8 changes: 8 additions & 0 deletions packages/modular-governance-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/modular-governance-hooks





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/modular-governance-hooks
Expand Down
6 changes: 3 additions & 3 deletions packages/modular-governance-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.11",
"version": "0.0.12",
"description": "React hooks for modular governance",
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,8 +36,8 @@
"@helium/account-fetch-cache": "^0.5.0",
"@helium/account-fetch-cache-hooks": "^0.5.0",
"@helium/helium-react-hooks": "^0.5.0",
"@helium/modular-governance-idls": "^0.0.11",
"@helium/organization-sdk": "^0.0.11",
"@helium/modular-governance-idls": "^0.0.12",
"@helium/organization-sdk": "^0.0.12",
"@solana/web3.js": "^1.78.4"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/modular-governance-idls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/modular-governance-idls





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/modular-governance-idls
Expand Down
2 changes: 1 addition & 1 deletion packages/modular-governance-idls/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helium/modular-governance-idls",
"version": "0.0.11",
"version": "0.0.12",
"description": "Exported idls",
"publishConfig": {
"access": "public",
Expand Down

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions packages/nft-proxy-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/nft-proxy-sdk





## [0.0.9](https://github.com/helium/modular-governance/compare/v0.0.8...v0.0.9) (2023-11-14)

**Note:** Version bump only for package @helium/nft-proxy-sdk
2 changes: 1 addition & 1 deletion packages/nft-proxy-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.10",
"version": "0.0.12",
"description": "Interface to the nft proxy smart contract",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/nft-voter-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/nft-voter-sdk





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/nft-voter-sdk
Expand Down
6 changes: 3 additions & 3 deletions packages/nft-voter-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.11",
"version": "0.0.12",
"description": "Interface to the nft voter smart contract",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,8 +33,8 @@
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@helium/anchor-resolvers": "^0.5.0",
"@helium/modular-governance-idls": "^0.0.11",
"@helium/nft-proxy-sdk": "^0.0.10",
"@helium/modular-governance-idls": "^0.0.12",
"@helium/nft-proxy-sdk": "^0.0.12",
"@solana/spl-token": "^0.3.8"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/organization-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/organization-sdk





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/organization-sdk
Expand Down
6 changes: 3 additions & 3 deletions packages/organization-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.11",
"version": "0.0.12",
"description": "Interface to the organization smart contract",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,8 +33,8 @@
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@helium/anchor-resolvers": "^0.5.0",
"@helium/modular-governance-idls": "^0.0.11",
"@helium/proposal-sdk": "^0.0.11"
"@helium/modular-governance-idls": "^0.0.12",
"@helium/proposal-sdk": "^0.0.12"
},
"devDependencies": {
"git-format-staged": "^2.1.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/organization-wallet-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/organization-wallet-sdk





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/organization-wallet-sdk
Expand Down
6 changes: 3 additions & 3 deletions packages/organization-wallet-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.11",
"version": "0.0.12",
"description": "Interface to the organization wallet smart contract",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,8 +33,8 @@
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@helium/anchor-resolvers": "^0.5.0",
"@helium/modular-governance-idls": "^0.0.11",
"@helium/proposal-sdk": "^0.0.11"
"@helium/modular-governance-idls": "^0.0.12",
"@helium/proposal-sdk": "^0.0.12"
},
"devDependencies": {
"git-format-staged": "^2.1.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/proposal-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/proposal-sdk





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/proposal-sdk
Expand Down
4 changes: 2 additions & 2 deletions packages/proposal-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/"
},
"license": "Apache-2.0",
"version": "0.0.11",
"version": "0.0.12",
"description": "Interface to the proposal smart contract",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@helium/anchor-resolvers": "^0.5.0",
"@helium/modular-governance-idls": "^0.0.11"
"@helium/modular-governance-idls": "^0.0.12"
},
"devDependencies": {
"git-format-staged": "^2.1.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/state-controller-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.0.12](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.12) (2024-08-12)

**Note:** Version bump only for package @helium/state-controller-sdk





## [0.0.11](https://github.com/helium/modular-governance/compare/v0.0.10...v0.0.11) (2024-06-17)

**Note:** Version bump only for package @helium/state-controller-sdk
Expand Down
Loading
Loading