From 5b7e8a430e72b3dd2fc2f7e10443780de46d308a Mon Sep 17 00:00:00 2001
From: fragosti <francesco@fragosti.com>
Date: Mon, 24 May 2021 17:16:25 -0700
Subject: [PATCH 1/2] Add imageUrl and description to TokenExtensions

---
 src/lib/tokenlist.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/tokenlist.ts b/src/lib/tokenlist.ts
index 0d7a5348ae5b..89ed49ee790e 100644
--- a/src/lib/tokenlist.ts
+++ b/src/lib/tokenlist.ts
@@ -19,7 +19,6 @@ export interface TokenList {
 export interface TagDetails {
   readonly name: string;
   readonly description: string;
-  readonly imageUrl: string;
 }
 
 export interface TokenExtensions {
@@ -37,6 +36,8 @@ export interface TokenExtensions {
   readonly serumV3Usdt?: string;
   readonly serumV3Usdc?: string;
   readonly coingeckoId?: string;
+  readonly imageUrl?: string;
+  readonly description?: string;
 }
 
 export interface TokenInfo {

From 152098900f71b18980eff2057256f8c58405a3bb Mon Sep 17 00:00:00 2001
From: BMillman19 <BMillman19@users.noreply.github.com>
Date: Fri, 6 Aug 2021 00:30:44 +0000
Subject: [PATCH 2/2] chore(release): 0.2.211

---
 CHANGELOG.md | 2 ++
 package.json | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2fd36dd5f142..1db96a4043a3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
 
+### 0.2.211 (2021-08-06)
+
 ### 0.2.210 (2021-08-05)
 
 ### 0.2.209 (2021-08-04)
diff --git a/package.json b/package.json
index 0a1c4312b08f..38d0b941a778 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@solana/spl-token-registry",
-  "version": "0.2.210",
+  "version": "0.2.211",
   "description": "Solana Token Registry",
   "main": "dist/main/index.js",
   "typings": "dist/main/index.d.ts",