Skip to content

Commit 8a9af3b

Browse files
committed
Bump version to 2.5.0
VCS plugins changes: - SourceAzureDevOps 1.0.0 (new) - SourceBitBucket 2.2.0 - SourceCgit 2.1.0 - SourceGithub 2.3.0 - SourceGitlab 2.1.0 - SourceGitphp 2.1.0 - SourceGitweb 2.1.0 - SourceHgWeb 2.2.0 - SourceSFSVN 2.1.0 - SourceSVN 2.4.0 - SourceViewVC 2.1.0 - SourceVisualSVNServer 2.1.0 - SourceWebSVN 2.1.0
1 parent a6c3b9f commit 8a9af3b

File tree

13 files changed

+27
-27
lines changed

13 files changed

+27
-27
lines changed

Source/MantisSourceBase.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ abstract class MantisSourceBase extends MantisPlugin
1919
* a change in the minimum required MantisBT version: 0=1.2; 1=1.3, 2=2.x.
2020
* The framework version is incremented when the plugin's core files change.
2121
*/
22-
const FRAMEWORK_VERSION = '2.5.0-dev';
22+
const FRAMEWORK_VERSION = '2.5.0';
2323

2424
/**
2525
* Minimum required MantisBT version.

SourceAzureDevOps/SourceAzureDevOps.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class SourceAzureDevOpsPlugin extends MantisSourceGitBasePlugin {
1515

1616
const PLUGIN_VERSION = '1.0.0';
17-
const FRAMEWORK_VERSION_REQUIRED = '2.3.1';
17+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1818

1919
/**
2020
* Error constants

SourceBitBucket/SourceBitBucket.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class SourceBitBucketPlugin extends MantisSourceGitBasePlugin {
1111

12-
const PLUGIN_VERSION = '2.1.0';
12+
const PLUGIN_VERSION = '2.2.0';
1313
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1414

1515
protected $main_url = "https://bitbucket.org/";

SourceGithub/SourceGithub.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
class SourceGithubPlugin extends MantisSourceGitBasePlugin {
1616

17-
const PLUGIN_VERSION = '2.2.0';
18-
const FRAMEWORK_VERSION_REQUIRED = '2.2.0';
17+
const PLUGIN_VERSION = '2.3.0';
18+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1919

2020
const URL_API = 'https://api.github.com/';
2121
const URL_OAUTH = 'https://github.com/login/oauth/';

SourceGitlab/SourceGitlab.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
class SourceGitlabPlugin extends MantisSourceGitBasePlugin {
1717

18-
const PLUGIN_VERSION = '2.0.5';
19-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
18+
const PLUGIN_VERSION = '2.1.0';
19+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
2020

2121
public $type = 'gitlab';
2222

SourceGitphp/SourceGitphp.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
class SourceGitphpPlugin extends MantisSourceGitBasePlugin {
1313

14-
const PLUGIN_VERSION = '2.0.2';
15-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
14+
const PLUGIN_VERSION = '2.1.0';
15+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1616

1717
public $type = 'gitphp';
1818

SourceGitweb/SourceGitweb.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
class SourceGitwebPlugin extends MantisSourceGitBasePlugin {
1313

14-
const PLUGIN_VERSION = '2.0.3';
15-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
14+
const PLUGIN_VERSION = '2.1.0';
15+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1616

1717
public $type = 'gitweb';
1818

SourceHgWeb/SourceHgWeb.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
class SourceHgWebPlugin extends MantisSourcePlugin {
2121

22-
const PLUGIN_VERSION = '2.1.3';
23-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
22+
const PLUGIN_VERSION = '2.2.0';
23+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
2424

2525
/**
2626
* Various PCRE patterns used to parse HgWeb output when retrieving

SourceSFSVN/SourceSFSVN.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class SourceSFSVNPlugin extends SourceSVNPlugin {
1111

12-
const PLUGIN_VERSION = '2.0.0';
13-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
14-
const SOURCESVN_VERSION_REQUIRED = '2.0.0';
12+
const PLUGIN_VERSION = '2.1.0';
13+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
14+
const SOURCESVN_VERSION_REQUIRED = '2.5.0';
1515

1616
public $type = 'sfsvn';
1717

SourceSVN/SourceSVN.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
class SourceSVNPlugin extends MantisSourcePlugin {
1111

12-
const PLUGIN_VERSION = '2.3.0';
13-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
12+
const PLUGIN_VERSION = '2.4.0';
13+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
1414

1515
/**
1616
* Error constants

SourceViewVC/SourceViewVC.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
class SourceViewVCPlugin extends SourceSVNPlugin {
1212

13-
const PLUGIN_VERSION = '2.0.2';
14-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
15-
const SOURCESVN_VERSION_REQUIRED = '2.0.0';
13+
const PLUGIN_VERSION = '2.1.0';
14+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
15+
const SOURCESVN_VERSION_REQUIRED = '2.5.0';
1616

1717
public $type = 'viewvc';
1818

SourceVisualSVNServer/SourceVisualSVNServer.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
class SourceVisualSVNServerPlugin extends SourceSVNPlugin {
1313

14-
const PLUGIN_VERSION = '2.0.2';
15-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
16-
const SOURCESVN_VERSION_REQUIRED = '2.0.0';
14+
const PLUGIN_VERSION = '2.1.0';
15+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
16+
const SOURCESVN_VERSION_REQUIRED = '2.5.0';
1717

1818
public $type = 'vsvns';
1919

SourceWebSVN/SourceWebSVN.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class SourceWebSVNPlugin extends SourceSVNPlugin {
1111

12-
const PLUGIN_VERSION = '2.0.1';
13-
const FRAMEWORK_VERSION_REQUIRED = '2.0.0';
14-
const SOURCESVN_VERSION_REQUIRED = '2.0.0';
12+
const PLUGIN_VERSION = '2.1.0';
13+
const FRAMEWORK_VERSION_REQUIRED = '2.5.0';
14+
const SOURCESVN_VERSION_REQUIRED = '2.5.0';
1515

1616
public $type = 'websvn';
1717

0 commit comments

Comments
 (0)