Skip to content

Commit 8c264d4

Browse files
committed
New version 2.0.6
1 parent 4876f61 commit 8c264d4

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "Provides a pastebin including syntax highlighting",
55
"homepage": "https://www.phpbb.de/community/",
6-
"version": "2.0.5",
7-
"time": "2020-09-17",
6+
"version": "2.0.6",
7+
"time": "2020-10-04",
88
"license": "GPL-2.0-only",
99
"authors": [
1010
{

migrations/v206.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
/**
3+
*
4+
* Pastebin extension for the phpBB Forum Software package.
5+
*
6+
* @copyright (c) 2020 Crizzo <https://www.phpBB.de>
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
*/
10+
11+
namespace phpbbde\pastebin\migrations;
12+
13+
class v206 extends \phpbb\db\migration\migration
14+
{
15+
static public function depends_on()
16+
{
17+
return array(
18+
'\phpbbde\pastebin\migrations\v205',
19+
);
20+
}
21+
22+
public function update_data()
23+
{
24+
$data = array(
25+
// Update version
26+
array('config.update', array('pastebin_version', '2.0.6')),
27+
);
28+
return $data;
29+
}
30+
}

0 commit comments

Comments
 (0)