Skip to content

Commit 23d9154

Browse files
committed
Bump version to 2.0.5
1 parent e5bd954 commit 23d9154

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.4",
7-
"time": "2020-09-01",
6+
"version": "2.0.5",
7+
"time": "2020-09-17",
88
"license": "GPL-2.0-only",
99
"authors": [
1010
{

migrations/v205.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 v205 extends \phpbb\db\migration\migration
14+
{
15+
static public function depends_on()
16+
{
17+
return array(
18+
'\phpbbde\pastebin\migrations\v204',
19+
);
20+
}
21+
22+
public function update_data()
23+
{
24+
$data = array(
25+
// Update to version 1.1.1
26+
array('config.update', array('pastebin_version', '2.0.5')),
27+
);
28+
return $data;
29+
}
30+
}

0 commit comments

Comments
 (0)