From 5ff75d109307d827c414c4512904d776ed27fb40 Mon Sep 17 00:00:00 2001 From: pders01 Date: Thu, 3 Oct 2024 01:38:18 +0200 Subject: [PATCH] chore: increment patch version --- .../Xyz/Paulderscheid/CommandPalette.pm | 6 ++-- package.json | 30 +++++++++---------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Koha/Plugin/Xyz/Paulderscheid/CommandPalette.pm b/Koha/Plugin/Xyz/Paulderscheid/CommandPalette.pm index 1655cfe..7a5d4a8 100644 --- a/Koha/Plugin/Xyz/Paulderscheid/CommandPalette.pm +++ b/Koha/Plugin/Xyz/Paulderscheid/CommandPalette.pm @@ -15,7 +15,7 @@ use JSON qw( decode_json ); use base qw(Koha::Plugins::Base); ## Here we set our plugin version -our $VERSION = '1.0.0'; +our $VERSION = '1.0.1'; our $MINIMUM_VERSION = '21.05'; ## Here is our metadata, some keys are required, some are optional @@ -23,7 +23,7 @@ our $METADATA = { name => 'Command Palette', author => 'Paul Derscheid ', date_authored => '2023-06-29', - date_updated => '2023-06-29', + date_updated => '2024-10-03', minimum_version => $MINIMUM_VERSION, maximum_version => undef, version => $VERSION, @@ -185,4 +185,4 @@ sub static_routes { return $spec; } -1; +1; \ No newline at end of file diff --git a/package.json b/package.json index d555fb1..ebc9f0e 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,10 @@ { - "name": "koha-plugin-command-palette", - "version": "1.0.0", "description": "This plugin adds a command palette to the Koha staff client. It aims to make navigation easier for power users.", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "format": "prettier --write \"src/**/*.ts\"", - "build": "vite build", - "dev": "vite dev" - }, + "version": "1.0.1", + "license": "GPL-3.0", "repository": { - "type": "git", - "url": "git+https://github.com/pders01/koha-plugin-command-palette.git" + "url": "git+https://github.com/pders01/koha-plugin-command-palette.git", + "type": "git" }, "keywords": [ "koha-plugin", @@ -19,14 +12,21 @@ "koha" ], "author": "Paul Derscheid ", - "license": "GPL-3.0", + "scripts": { + "build": "vite build", + "dev": "vite dev", + "test": "echo \"Error: no test specified\" && exit 1", + "format": "prettier --write \"src/**/*.ts\"" + }, + "main": "index.js", "devDependencies": { + "vite": "^5.4.8", "prettier-plugin-organize-imports": "^3.2.2", "tslib": "^2.6.0", - "typescript": "^5.6.2", - "vite": "^5.4.8" + "typescript": "^5.6.2" }, "dependencies": { "lit": "^3.2.0" - } + }, + "name": "koha-plugin-command-palette" } \ No newline at end of file