From 61eef3c76dd27671f1a140908cb9db8a391f76f0 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Sat, 11 Dec 2021 19:08:23 -0600 Subject: [PATCH] incrementing version after release --- CHANGES | 2 ++ Makefile.PL | 2 +- bin/yancy | 2 +- lib/Mojolicious/Plugin/Yancy.pm | 2 +- lib/Yancy.pm | 2 +- lib/Yancy/Backend.pm | 2 +- lib/Yancy/Backend/Dbic.pm | 2 +- lib/Yancy/Backend/Memory.pm | 2 +- lib/Yancy/Backend/MojoDB.pm | 2 +- lib/Yancy/Backend/Mysql.pm | 2 +- lib/Yancy/Backend/Pg.pm | 2 +- lib/Yancy/Backend/Role/DBI.pm | 2 +- lib/Yancy/Backend/Role/Sync.pm | 2 +- lib/Yancy/Backend/Sqlite.pm | 2 +- lib/Yancy/Command/backend.pm | 2 +- lib/Yancy/Command/backend/copy.pm | 2 +- lib/Yancy/Controller/Yancy.pm | 2 +- lib/Yancy/Controller/Yancy/API.pm | 2 +- lib/Yancy/Controller/Yancy/MultiTenant.pm | 2 +- lib/Yancy/I18N.pm | 2 +- lib/Yancy/I18N/en.pm | 2 +- lib/Yancy/Model.pm | 2 +- lib/Yancy/Model/Item.pm | 2 +- lib/Yancy/Model/Schema.pm | 2 +- lib/Yancy/Plugin/Auth.pm | 2 +- lib/Yancy/Plugin/Auth/Basic.pm | 2 +- lib/Yancy/Plugin/Auth/Github.pm | 2 +- lib/Yancy/Plugin/Auth/OAuth2.pm | 2 +- lib/Yancy/Plugin/Auth/Password.pm | 2 +- lib/Yancy/Plugin/Auth/Role/RequireUser.pm | 2 +- lib/Yancy/Plugin/Auth/Token.pm | 2 +- lib/Yancy/Plugin/Editor.pm | 2 +- lib/Yancy/Plugin/File.pm | 2 +- lib/Yancy/Plugin/Form.pm | 2 +- lib/Yancy/Plugin/Form/Bootstrap4.pm | 2 +- lib/Yancy/Plugin/Roles.pm | 2 +- lib/Yancy/Util.pm | 2 +- 37 files changed, 38 insertions(+), 36 deletions(-) diff --git a/CHANGES b/CHANGES index 853bf891..012178ea 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,8 @@ Changelog for Yancy {{ $NEXT }} +1.086 2021-12-11 19:04:23-06:00 America/Chicago + [Fixed] - Yancy now allows foreign key relationships on any columns, not just diff --git a/Makefile.PL b/Makefile.PL index 831a5709..13fe0bb2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -49,7 +49,7 @@ my %WriteMakefileArgs = ( "IPC::Open3" => 0, "Test::More" => "1.001005" }, - "VERSION" => "1.086", + "VERSION" => "1.087", "test" => { "TESTS" => "t/*.t t/backend/*.t t/command/backend/*.t t/controller/*.t t/examples/*.t t/plugin/*.t t/plugin/auth/*.t t/plugin/form/*.t" } diff --git a/bin/yancy b/bin/yancy index 0bfec1ae..02e0af4c 100644 --- a/bin/yancy +++ b/bin/yancy @@ -2,7 +2,7 @@ # PODNAME: yancy # ABSTRACT: Start the standalone Yancy web application -our $VERSION = '1.086'; +our $VERSION = '1.087'; =head1 SYNOPSIS diff --git a/lib/Mojolicious/Plugin/Yancy.pm b/lib/Mojolicious/Plugin/Yancy.pm index ea642c8a..6b203870 100644 --- a/lib/Mojolicious/Plugin/Yancy.pm +++ b/lib/Mojolicious/Plugin/Yancy.pm @@ -1,5 +1,5 @@ package Mojolicious::Plugin::Yancy; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Embed a simple admin CMS into your Mojolicious application =head1 SYNOPSIS diff --git a/lib/Yancy.pm b/lib/Yancy.pm index 508e3228..82bcea05 100644 --- a/lib/Yancy.pm +++ b/lib/Yancy.pm @@ -1,5 +1,5 @@ package Yancy; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: The Best Web Framework Deserves the Best CMS # "Mr. Fry: Son, your name is Yancy, just like me and my grandfather and diff --git a/lib/Yancy/Backend.pm b/lib/Yancy/Backend.pm index f9c17629..9b2b5735 100644 --- a/lib/Yancy/Backend.pm +++ b/lib/Yancy/Backend.pm @@ -1,5 +1,5 @@ package Yancy::Backend; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Interface to a database =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Dbic.pm b/lib/Yancy/Backend/Dbic.pm index 5a7b9361..45fb1cd8 100644 --- a/lib/Yancy/Backend/Dbic.pm +++ b/lib/Yancy/Backend/Dbic.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Dbic; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A backend for DBIx::Class schemas =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Memory.pm b/lib/Yancy/Backend/Memory.pm index db3304fb..789b2614 100644 --- a/lib/Yancy/Backend/Memory.pm +++ b/lib/Yancy/Backend/Memory.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Memory; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A backend entirely in memory =head1 DESCRIPTION diff --git a/lib/Yancy/Backend/MojoDB.pm b/lib/Yancy/Backend/MojoDB.pm index cfee3be5..004df196 100644 --- a/lib/Yancy/Backend/MojoDB.pm +++ b/lib/Yancy/Backend/MojoDB.pm @@ -1,5 +1,5 @@ package Yancy::Backend::MojoDB; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Abstract base class for drivers based on Mojo DB drivers =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Mysql.pm b/lib/Yancy/Backend/Mysql.pm index 3434da56..68cadbc4 100644 --- a/lib/Yancy/Backend/Mysql.pm +++ b/lib/Yancy/Backend/Mysql.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Mysql; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A backend for MySQL using Mojo::mysql =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Pg.pm b/lib/Yancy/Backend/Pg.pm index 155e3591..e9642fa1 100644 --- a/lib/Yancy/Backend/Pg.pm +++ b/lib/Yancy/Backend/Pg.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Pg; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A backend for Postgres using Mojo::Pg =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Role/DBI.pm b/lib/Yancy/Backend/Role/DBI.pm index d2e38a97..59eb704f 100644 --- a/lib/Yancy/Backend/Role/DBI.pm +++ b/lib/Yancy/Backend/Role/DBI.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Role::DBI; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Role for backends that use DBI =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Role/Sync.pm b/lib/Yancy/Backend/Role/Sync.pm index fb174261..eedb9230 100644 --- a/lib/Yancy/Backend/Role/Sync.pm +++ b/lib/Yancy/Backend/Role/Sync.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Role::Sync; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A role to give a synchronous backend useful Promises methods =head1 SYNOPSIS diff --git a/lib/Yancy/Backend/Sqlite.pm b/lib/Yancy/Backend/Sqlite.pm index 420db11f..f2023e96 100644 --- a/lib/Yancy/Backend/Sqlite.pm +++ b/lib/Yancy/Backend/Sqlite.pm @@ -1,5 +1,5 @@ package Yancy::Backend::Sqlite; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A backend for SQLite using Mojo::SQLite =head1 SYNOPSIS diff --git a/lib/Yancy/Command/backend.pm b/lib/Yancy/Command/backend.pm index 965a28f4..08b1a4a7 100644 --- a/lib/Yancy/Command/backend.pm +++ b/lib/Yancy/Command/backend.pm @@ -1,5 +1,5 @@ package Yancy::Command::backend; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Commands for working with Yancy backends =head1 SYNOPSIS diff --git a/lib/Yancy/Command/backend/copy.pm b/lib/Yancy/Command/backend/copy.pm index ddde06bf..2fb27182 100644 --- a/lib/Yancy/Command/backend/copy.pm +++ b/lib/Yancy/Command/backend/copy.pm @@ -1,5 +1,5 @@ package Yancy::Command::backend::copy; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Copy data between backends =head1 SYNOPSIS diff --git a/lib/Yancy/Controller/Yancy.pm b/lib/Yancy/Controller/Yancy.pm index 279a6625..c6a00c17 100644 --- a/lib/Yancy/Controller/Yancy.pm +++ b/lib/Yancy/Controller/Yancy.pm @@ -1,5 +1,5 @@ package Yancy::Controller::Yancy; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Basic controller for displaying content =head1 SYNOPSIS diff --git a/lib/Yancy/Controller/Yancy/API.pm b/lib/Yancy/Controller/Yancy/API.pm index 4788f023..e944d06e 100644 --- a/lib/Yancy/Controller/Yancy/API.pm +++ b/lib/Yancy/Controller/Yancy/API.pm @@ -1,5 +1,5 @@ package Yancy::Controller::Yancy::API; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: (DEPRECATED) An OpenAPI REST controller for the Yancy editor =head1 DESCRIPTION diff --git a/lib/Yancy/Controller/Yancy/MultiTenant.pm b/lib/Yancy/Controller/Yancy/MultiTenant.pm index e639a01c..e7ed3e32 100644 --- a/lib/Yancy/Controller/Yancy/MultiTenant.pm +++ b/lib/Yancy/Controller/Yancy/MultiTenant.pm @@ -1,5 +1,5 @@ package Yancy::Controller::Yancy::MultiTenant; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A controller to show a user only their content =head1 SYNOPSIS diff --git a/lib/Yancy/I18N.pm b/lib/Yancy/I18N.pm index afcfab80..66118343 100644 --- a/lib/Yancy/I18N.pm +++ b/lib/Yancy/I18N.pm @@ -1,5 +1,5 @@ package Yancy::I18N; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Internationalization (i18n) for Yancy =head1 SYNOPSIS diff --git a/lib/Yancy/I18N/en.pm b/lib/Yancy/I18N/en.pm index 3aa7e444..e77e812c 100644 --- a/lib/Yancy/I18N/en.pm +++ b/lib/Yancy/I18N/en.pm @@ -1,5 +1,5 @@ package Yancy::I18N::en; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: English lexicon for Yancy strings =head1 DESCRIPTION diff --git a/lib/Yancy/Model.pm b/lib/Yancy/Model.pm index 40d019b7..0f53d2bc 100644 --- a/lib/Yancy/Model.pm +++ b/lib/Yancy/Model.pm @@ -1,5 +1,5 @@ package Yancy::Model; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Model layer for Yancy apps =head1 SYNOPSIS diff --git a/lib/Yancy/Model/Item.pm b/lib/Yancy/Model/Item.pm index 6c0e4875..e6d6ed7a 100644 --- a/lib/Yancy/Model/Item.pm +++ b/lib/Yancy/Model/Item.pm @@ -1,5 +1,5 @@ package Yancy::Model::Item; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Interface to a single item =head1 SYNOPSIS diff --git a/lib/Yancy/Model/Schema.pm b/lib/Yancy/Model/Schema.pm index 7c6c2099..d89aeb10 100644 --- a/lib/Yancy/Model/Schema.pm +++ b/lib/Yancy/Model/Schema.pm @@ -1,5 +1,5 @@ package Yancy::Model::Schema; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Interface to a single schema =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Auth.pm b/lib/Yancy/Plugin/Auth.pm index a7229fc8..8a4d753f 100644 --- a/lib/Yancy/Plugin/Auth.pm +++ b/lib/Yancy/Plugin/Auth.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Add one or more authentication plugins to your site =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Auth/Basic.pm b/lib/Yancy/Plugin/Auth/Basic.pm index 1a9135d1..8253a2d0 100644 --- a/lib/Yancy/Plugin/Auth/Basic.pm +++ b/lib/Yancy/Plugin/Auth/Basic.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::Basic; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: (DEPRECATED) A simple auth module for a site =encoding utf8 diff --git a/lib/Yancy/Plugin/Auth/Github.pm b/lib/Yancy/Plugin/Auth/Github.pm index dfc3d355..8800b734 100644 --- a/lib/Yancy/Plugin/Auth/Github.pm +++ b/lib/Yancy/Plugin/Auth/Github.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::Github; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Authenticate using Github's OAuth2 provider =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Auth/OAuth2.pm b/lib/Yancy/Plugin/Auth/OAuth2.pm index e3152c43..53aa50ff 100644 --- a/lib/Yancy/Plugin/Auth/OAuth2.pm +++ b/lib/Yancy/Plugin/Auth/OAuth2.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::OAuth2; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Authenticate using an OAuth2 provider =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Auth/Password.pm b/lib/Yancy/Plugin/Auth/Password.pm index 3a4d4e20..a318ff21 100644 --- a/lib/Yancy/Plugin/Auth/Password.pm +++ b/lib/Yancy/Plugin/Auth/Password.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::Password; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A simple password-based auth =encoding utf8 diff --git a/lib/Yancy/Plugin/Auth/Role/RequireUser.pm b/lib/Yancy/Plugin/Auth/Role/RequireUser.pm index 4afddeec..1f256b04 100644 --- a/lib/Yancy/Plugin/Auth/Role/RequireUser.pm +++ b/lib/Yancy/Plugin/Auth/Role/RequireUser.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::Role::RequireUser; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Add authorization based on user attributes =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Auth/Token.pm b/lib/Yancy/Plugin/Auth/Token.pm index d474a214..22a28732 100644 --- a/lib/Yancy/Plugin/Auth/Token.pm +++ b/lib/Yancy/Plugin/Auth/Token.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Auth::Token; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: A simple token-based auth =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Editor.pm b/lib/Yancy/Plugin/Editor.pm index a6368b68..e0038fd2 100644 --- a/lib/Yancy/Plugin/Editor.pm +++ b/lib/Yancy/Plugin/Editor.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Editor; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Yancy content editor, admin, and management application =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/File.pm b/lib/Yancy/Plugin/File.pm index ec085277..83425c3c 100644 --- a/lib/Yancy/Plugin/File.pm +++ b/lib/Yancy/Plugin/File.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::File; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Manage file uploads, attachments, and other assets =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Form.pm b/lib/Yancy/Plugin/Form.pm index c2e8fc3a..c6d6e7aa 100644 --- a/lib/Yancy/Plugin/Form.pm +++ b/lib/Yancy/Plugin/Form.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Form; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Generate form HTML using various UI libraries =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Form/Bootstrap4.pm b/lib/Yancy/Plugin/Form/Bootstrap4.pm index 3ed29f4a..9a30ebfa 100644 --- a/lib/Yancy/Plugin/Form/Bootstrap4.pm +++ b/lib/Yancy/Plugin/Form/Bootstrap4.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Form::Bootstrap4; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Generate forms using Bootstrap 4 =head1 SYNOPSIS diff --git a/lib/Yancy/Plugin/Roles.pm b/lib/Yancy/Plugin/Roles.pm index 8ff52086..4aae3a5b 100644 --- a/lib/Yancy/Plugin/Roles.pm +++ b/lib/Yancy/Plugin/Roles.pm @@ -1,5 +1,5 @@ package Yancy::Plugin::Roles; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Role-based access controls (RBAC) =head1 SYNOPSIS diff --git a/lib/Yancy/Util.pm b/lib/Yancy/Util.pm index 3f284afb..819e023f 100644 --- a/lib/Yancy/Util.pm +++ b/lib/Yancy/Util.pm @@ -1,5 +1,5 @@ package Yancy::Util; -our $VERSION = '1.086'; +our $VERSION = '1.087'; # ABSTRACT: Utilities for Yancy =head1 SYNOPSIS