Skip to content

Commit

Permalink
chore(release): bump version to 1.1.1
Browse files Browse the repository at this point in the history
refactor: remove autoload requirement and include Group class in fieldMethods
  • Loading branch information
philippoehrlein committed Dec 7, 2024
1 parent d75d484 commit 4d120bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kirby Navigation Groups
![License](https://img.shields.io/badge/license-MIT-green)
![Version](https://img.shields.io/badge/version-1.1.0-blue)
![Version](https://img.shields.io/badge/version-1.1.1-blue)

A plugin for Kirby CMS that allows you to organize your navigation items into groups.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A Kirby Plugin for grouping navigation items",
"type": "kirby-plugin",
"license": "MIT",
"version": "1.1.0",
"version": "1.1.1",
"homepage": "https://github.com/philippoehrlein/kirby-navigation-groups",
"authors": [
{
Expand Down
2 changes: 2 additions & 0 deletions config/fieldMethods.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

use Kirby\Data\Yaml;

require_once __DIR__ . '/../lib/Group.php';
use KirbyNavigationGroups\Group;

return [
Expand Down
4 changes: 1 addition & 3 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?php
require_once __DIR__ . '/vendor/autoload.php';

use Kirby\Cms\App as Kirby;

Kirby::plugin('philippoehrlein/kirby-navigation-groups', [
'fields' => require __DIR__ . '/config/fields.php',
'api' => require __DIR__ . '/config/api.php',
'translations' => require __DIR__ . '/config/translations.php',
'fieldMethods' => require __DIR__ . '/config/fieldMethods.php',
'version' => '1.1.0'
'version' => '1.1.1'
]);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "kirby-navigation-groups",
"version": "1.1.0",
"version": "1.1.1",
"author": {
"name": "Philipp Oehrlein",
"email": "[email protected]"
Expand Down

0 comments on commit 4d120bf

Please sign in to comment.