Skip to content

Commit 14f8ae9

Browse files
committed
Fixed versioning for development
1 parent 80b0c97 commit 14f8ae9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Shopp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Shopp
44
* Plugin URI: http://shopplugin.com
55
* Description: An ecommerce framework for WordPress.
6-
* Version: 1.3.9
6+
* Version: 1.4.0dev
77
* Author: Ingenesis Limited
88
* Author URI: http://ingenesis.net
99
* Requires at least: 3.5

core/library/Version.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class ShoppVersion {
2121
const MINOR = 3;
2222

2323
/** @type int PATCH The maintenance patch version number */
24-
const PATCH = 9;
24+
const PATCH = 4;
2525

2626
/** @type string PRERELEASE The prerelease designation (dev, beta, RC1) */
27-
const PRERELEASE = '';
27+
const PRERELEASE = 'dev';
2828

2929
/** @type string CODENAME The release project code name */
30-
const CODENAME = 'Cydonia';
30+
const CODENAME = 'Orion';
3131

3232
/** @type int DB The database schema version */
3333
const DB = 1201;

0 commit comments

Comments
 (0)