Skip to content

Commit a429a24

Browse files
committed
bump schema version to 0.4.0
1 parent 3a75663 commit a429a24

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

packages/core/src/CoreUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
import { ComputeBudgetProgram } from "@solana/web3.js";
99

1010
export class Constants {
11-
static PUBLISHING_SCHEMA_VER = "0.3.0";
11+
static PUBLISHING_SCHEMA_VER = "0.4.0";
1212
}
1313
export const truncateAddress = (address: string) => {
1414
return `${address.slice(0, 4)}...${address.slice(

publishing-spec/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
NOTE: The versions referenced in this changelog relate only to the publishing JSON schema spec (for Publisher/App/Release) and not the versions of the CLI tooling. The CLI tooling is versioned independently.
44

5+
## 0.4.0
6+
7+
- Added `support_email` to the release schema's `publisher_details`, if `publisher.support_email` is not provided in config fallback to using `publisher.email`
8+
59
## 0.3.0
610

711
- `banner` value added to `android_details`'s `media` region of the release schema as optional field

publishing-spec/SPEC.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## dApp Store NFT Specification - v0.3.0
2+
## dApp Store NFT Specification - v0.4.0
33

44
The following is documentation of the NFT & JSON metadata specification for the dApp store.
55

@@ -25,7 +25,7 @@ The following is a readable example instance with sample data filled in:
2525

2626
```json
2727
{
28-
"schema_version": "v0.3.0",
28+
"schema_version": "v0.4.0",
2929
"name": "Wallet-visible name; 32 char limit [Metaplex compatibility]",
3030
"description": "Wallet-visible description [Metaplex compatibility]",
3131
"image": "http://cdn.org/wallet_display.png [Metaplex compatibility]",
@@ -173,7 +173,7 @@ The following is a readable example instance with sample data filled in:
173173

174174
```json
175175
{
176-
"schema_version": "v0.3.0",
176+
"schema_version": "v0.4.0",
177177
"name": "Wallet-visible collection name - 32 char limit [Metaplex compatibility]",
178178
"image": "http://cdn.org/wallet_display.png [Metaplex compatibility]",
179179
"properties": {
@@ -204,7 +204,7 @@ The following is a readable example instance with sample data filled in:
204204

205205
```json
206206
{
207-
"schema_version": "v0.3.0",
207+
"schema_version": "v0.4.0",
208208
"name": "Wallet-visible Publisher; 32 char limit [Metaplex compatibility]",
209209
"image": "http://cdn.org/wallet_display.png [Metaplex compatibility]",
210210
"properties": {

0 commit comments

Comments
 (0)