feat: bump VERSION to 3.1.0 and api() to 14 for PVE 9 compatibility

Closes #270. PVE 9 expects APIVER=14; returning 11 caused a "older storage
API, upgrade recommended" warning on every pvedaemon start and qm command.
No new method implementations required — Plugin.pm has no gates between
api() 11 and 14. Bumping VERSION starts the v3.1.0 development cycle.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Kevin Adams 2026-06-07 08:34:25 -04:00
parent 259bdd4fca
commit fc74a42cf2
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ use PVE::Storage::Plugin;
use base qw(PVE::Storage::Plugin);
our $VERSION = '3.0.0';
our $VERSION = '3.1.0';
# Per-host runtime state cache
my $state = {};
# ── Plugin identity ───────────────────────────────────────────────────────────
sub api { return 11; }
sub api { return 14; }
sub type { return 'truenas'; }
sub plugindata {