Skip to content

Commit 2c763a0

Browse files
committed
Update version for all plugins
- Plugins with a 0.x version are now 1.0.0 - Bump patch version number for the other plugins - Update dependency for SVN-based plugins
1 parent ea062a4 commit 2c763a0

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

SourceBitBucket/SourceBitBucket.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class SourceBitBucketPlugin extends MantisSourcePlugin {
1313

14-
const PLUGIN_VERSION = '0.19';
14+
const PLUGIN_VERSION = '1.0.0';
1515
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
1616

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

SourceCgit/SourceCgit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class SourceCgitPlugin extends MantisSourcePlugin {
1818

19-
const PLUGIN_VERSION = '0.16';
19+
const PLUGIN_VERSION = '1.0.0';
2020
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
2121

2222
public function register() {

SourceGithub/SourceGithub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class SourceGithubPlugin extends MantisSourcePlugin {
1313

14-
const PLUGIN_VERSION = '1.3.0';
14+
const PLUGIN_VERSION = '1.3.1';
1515
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
1616

1717
const ERROR_INVALID_PRIMARY_BRANCH = 'invalid_branch';

SourceGitlab/SourceGitlab.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class SourceGitlabPlugin extends MantisSourcePlugin {
1515

16-
const PLUGIN_VERSION = '1.0.4';
16+
const PLUGIN_VERSION = '1.0.5';
1717
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
1818

1919
const ERROR_INVALID_PRIMARY_BRANCH = 'invalid_branch';

SourceGitweb/SourceGitweb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class SourceGitwebPlugin extends MantisSourcePlugin {
1313

14-
const PLUGIN_VERSION = '0.18';
14+
const PLUGIN_VERSION = '1.0.0';
1515
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
1616

1717
public function register() {

SourceHgWeb/SourceHgWeb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class SourceHgWebPlugin extends MantisSourcePlugin {
2121

22-
const PLUGIN_VERSION = '0.15';
22+
const PLUGIN_VERSION = '1.0.0';
2323
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
2424

2525
function register() {

SourceSFSVN/SourceSFSVN.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class SourceSFSVNPlugin extends SourceSVNPlugin {
1111

12-
const PLUGIN_VERSION = '0.16';
12+
const PLUGIN_VERSION = '1.0.0';
1313
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
14-
const SOURCESVN_VERSION_REQUIRED = '0.16';
14+
const SOURCESVN_VERSION_REQUIRED = '1.0';
1515

1616
public function register() {
1717
$this->name = lang_get( 'plugin_SourceSFSVN_title' );

SourceSVN/SourceSVN.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class SourceSVNPlugin extends MantisSourcePlugin {
1111

12-
const PLUGIN_VERSION = '0.19';
12+
const PLUGIN_VERSION = '1.0.0';
1313
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
1414

1515
public function register() {

SourceViewVC/SourceViewVC.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
class SourceViewVCPlugin extends SourceSVNPlugin {
1212

13-
const PLUGIN_VERSION = '0.1';
13+
const PLUGIN_VERSION = '1.0.0';
1414
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
15-
const SOURCESVN_VERSION_REQUIRED = '0.16';
15+
const SOURCESVN_VERSION_REQUIRED = '1.0';
1616

1717
public function register() {
1818
$this->name = lang_get( 'plugin_SourceViewVC_title' );

SourceWebSVN/SourceWebSVN.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class SourceWebSVNPlugin extends SourceSVNPlugin {
1111

12-
const PLUGIN_VERSION = '0.18';
12+
const PLUGIN_VERSION = '1.0.0';
1313
const FRAMEWORK_VERSION_REQUIRED = '1.3.2';
14-
const SOURCESVN_VERSION_REQUIRED = '0.16';
14+
const SOURCESVN_VERSION_REQUIRED = '1.0';
1515

1616
public function register() {
1717
$this->name = lang_get( 'plugin_SourceWebSVN_title' );

0 commit comments

Comments
 (0)