Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yllen committed Nov 9, 2022
1 parent 0e57ce6 commit 1f7f111
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function plugin_pdf_MassiveActions($type) {
function plugin_pdf_install() {
global $DB;

$migration = new Migration('2.1.0');
$migration = new Migration('3.0.0');

include_once(Plugin::getPhpDir('pdf')."/inc/profile.class.php");
PluginPdfProfile::install($migration);
Expand All @@ -75,7 +75,7 @@ function plugin_pdf_install() {
function plugin_pdf_uninstall() {
global $DB;

$migration = new Migration('2.1.0');
$migration = new Migration('3.0.0');

include_once(Plugin::getPhpDir('pdf')."/inc/config.class.php");
PluginPdfConfig::uninstall($migration);
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function plugin_init_pdf() {
function plugin_version_pdf() {

return ['name' => __('Print to pdf', 'pdf'),
'version' => '2.1.0',
'version' => '3.0.0',
'author' => 'Remi Collet, Nelly Mahu-Lasson',
'license' => 'GPLv3+',
'homepage' => 'https://github.com/yllen/pdf',
Expand Down

0 comments on commit 1f7f111

Please sign in to comment.