From 3cbb4d17ffb818a7405996d0a63d7f9b57880896 Mon Sep 17 00:00:00 2001 From: fuleinist <1163738+fuleinist@users.noreply.github.com> Date: Fri, 7 Aug 2026 12:01:44 +1000 Subject: [PATCH 1/2] feat: add official DynamoDB icon to plugin manifest - Add official Amazon DynamoDB brand icon (SVG) from simple-icons - Add icon URL field to .tabularium manifest for registry display - Follows same pattern as tabularis-duckdb-plugin icon implementation Refs: TabularisDB/tabularis#607 (review feedback from @debba) --- .tabularium | 1 + dynamodb-icon.svg | 1 + 2 files changed, 2 insertions(+) create mode 100644 dynamodb-icon.svg diff --git a/.tabularium b/.tabularium index 9f6b25c..2234295 100644 --- a/.tabularium +++ b/.tabularium @@ -2,6 +2,7 @@ "name": "dynamodb", "version": "0.1.4", "kind": "driver", + "icon": "https://raw.githubusercontent.com/TabularisDB/tabularis-dynamodb-plugin/main/dynamodb-icon.svg", "description": "Tabularis driver plugin for AWS DynamoDB", "engine": "dynamodb", "paradigms": [ diff --git a/dynamodb-icon.svg b/dynamodb-icon.svg new file mode 100644 index 0000000..3d010ed --- /dev/null +++ b/dynamodb-icon.svg @@ -0,0 +1 @@ +Amazon DynamoDB \ No newline at end of file From 153391b9e2abb3b52937fc3e6e8f67279a03549a Mon Sep 17 00:00:00 2001 From: fuleinist <1163738+fuleinist@users.noreply.github.com> Date: Fri, 7 Aug 2026 15:27:52 +1000 Subject: [PATCH 2/2] chore(release): bump version to v0.1.5 --- .tabularium | 2 +- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.tabularium b/.tabularium index 2234295..daf43bb 100644 --- a/.tabularium +++ b/.tabularium @@ -1,6 +1,6 @@ { "name": "dynamodb", - "version": "0.1.4", + "version": "0.1.5", "kind": "driver", "icon": "https://raw.githubusercontent.com/TabularisDB/tabularis-dynamodb-plugin/main/dynamodb-icon.svg", "description": "Tabularis driver plugin for AWS DynamoDB", diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd7ff7..7904f28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.1.5] — 2026-08-07 + +### Added + +- Official Amazon DynamoDB brand icon (SVG) added to the plugin repository + and referenced via the `icon` field in `.tabularium`, following the same + pattern as the DuckDB plugin. + ## [0.1.4] — 2026-08-06 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 91caeb9..c3c7cf1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dynamodb-plugin" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Tabularis driver plugin for AWS DynamoDB" license = "Apache-2.0"