Skip to content

Commit

Permalink
chore: increment patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
pders01 committed Oct 2, 2024
1 parent b807cc8 commit 5ff75d1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Koha/Plugin/Xyz/Paulderscheid/CommandPalette.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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
our $METADATA = {
name => 'Command Palette',
author => 'Paul Derscheid <[email protected]>',
date_authored => '2023-06-29',
date_updated => '2023-06-29',
date_updated => '2024-10-03',
minimum_version => $MINIMUM_VERSION,
maximum_version => undef,
version => $VERSION,
Expand Down Expand Up @@ -185,4 +185,4 @@ sub static_routes {
return $spec;
}

1;
1;
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"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",
"command-palette",
"koha"
],
"author": "Paul Derscheid <[email protected]>",
"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"
}

0 comments on commit 5ff75d1

Please sign in to comment.