| 1 |
<?php |
| 2 |
/** |
| 3 |
* Defining the UpStream version, and also any addon's version that working with this this release. |
| 4 |
* |
| 5 |
* @package UpStream |
| 6 |
*/ |
| 7 |
|
| 8 |
define( 'UPSTREAM_VERSION', '2.1.0' ); |
| 9 |
|
| 10 |
global $upstream_addon_requirements; |
| 11 |
$upstream_addon_requirements = array( |
| 12 |
array( 'Upstream-Advanced-Permissions/upstream-advanced-permissions.php', '2.0.7' ), |
| 13 |
array( 'UpStream-API/upstream-api.php', '2.0.7' ), |
| 14 |
array( 'UpStream-Calendar-View/upstream-calendar-view.php', '2.0.7' ), |
| 15 |
array( 'UpStream-Copy-Project/upstream-copy-project.php', '2.0.7' ), |
| 16 |
array( 'UpStream-Custom-Fields/upstream-custom-fields.php', '2.0.7' ), |
| 17 |
array( 'UpStream-Customizer/upstream-customizer.php', '2.0.7' ), |
| 18 |
array( 'UpStream-Email-Notifications/upstream-email-notifications.php', '2.0.7' ), |
| 19 |
array( 'UpStream-Forms/upstream-forms.php', '2.0.7' ), |
| 20 |
array( 'UpStream-Frontend-Edit/upstream-frontend-edit.php', '2.0.7' ), |
| 21 |
array( 'UpStream-Name-Replacement/upstream-name-replacement.php', '2.0.7' ), |
| 22 |
array( 'UpStream-Project-Timeline/upstream-project-timeline.php', '2.0.7' ), |
| 23 |
array( 'UpStream-Reporting/upstream-reporting.php', '2.0.7' ), |
| 24 |
array( 'UpStream-Time-Tracking/upstream-time-tracking.php', '2.0.7' ), |
| 25 |
); |
| 26 |
|