Skip to content

Commit 303d2cb

Browse files
pranotiTechjoomlamanojLondhe
authored andcommitted
Bug #111922 chore: Release script and installation version changes (#35)
* Bug #111922 chore: Release script and installation version changes * Bug #111922 chore: Release script and installation version changes
1 parent cec1f8b commit 303d2cb

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

build/bump.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ function usage($command)
4848

4949
// This file will vary from component to component
5050
$coreXmlFiles = array(
51-
'/com_hierarchy/hierarchy.xml',
52-
'/com_hierarchy/plugins/actionlog/hierarchy/hierarchy.xml',
53-
'/com_hierarchy/plugins/privacy/hierarchy/hierarchy.xml'
51+
'/hierarchy.xml',
52+
'/plugins/actionlog/hierarchy/hierarchy.xml',
53+
'/plugins/privacy/hierarchy/hierarchy.xml'
5454
);
5555

5656
$antJobFile = '/build.xml';
@@ -245,7 +245,7 @@ function usage($command)
245245
{
246246
if (file_exists($rootPath . $coreXmlFile))
247247
{
248-
// @echo 'Processed xml file: ' .$rootPath . $coreXmlFile . PHP_EOL;
248+
// echo 'Processed xml file: ' .$rootPath . $coreXmlFile . PHP_EOL;
249249

250250
$fileContents = file_get_contents($rootPath . $coreXmlFile);
251251

hierarchy.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<extension type="component" version="3.0" method="upgrade">
33
<name>com_hierarchy</name>
4-
<creationDate>24th November 2017</creationDate>
5-
<copyright>Copyright (C) 2015. All rights reserved.</copyright>
6-
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
4+
<creationDate>16th Nov 2018</creationDate>
5+
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright>
6+
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
77
<author>Techjoomla</author>
8-
<authorEmail>contact@techjoomla.com</authorEmail>
9-
<authorUrl>http://techjoomla.com</authorUrl>
10-
<version>1.1</version>
8+
<authorEmail>extensions@techjoomla.com</authorEmail>
9+
<authorUrl>https://techjoomla.com</authorUrl>
10+
<version>1.1.1</version>
1111
<description>This tool will let the admin set a ‘Reports to’ field for each user in the system. This will be updated en masse using a CSV</description>
1212

1313
<install> <!-- Runs on install -->

plugins/actionlog/hierarchy/hierarchy.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,31 @@
2020
/**
2121
* Hierarchy Actions Logging Plugin.
2222
*
23-
* @since __DEPLOY_VERSION__
23+
* @since 1.1.1
2424
*/
2525
class PlgActionlogHierarchy extends CMSPlugin
2626
{
2727
/**
2828
* Application object.
2929
*
3030
* @var JApplicationCms
31-
* @since __DEPLOY_VERSION__
31+
* @since 1.1.1
3232
*/
3333
protected $app;
3434

3535
/**
3636
* Database object.
3737
*
3838
* @var JDatabaseDriver
39-
* @since __DEPLOY_VERSION__
39+
* @since 1.1.1
4040
*/
4141
protected $db;
4242

4343
/**
4444
* Load plugin language file automatically so that it can be used inside component
4545
*
4646
* @var boolean
47-
* @since __DEPLOY_VERSION__
47+
* @since 1.1.1
4848
*/
4949
protected $autoloadLanguage = true;
5050

@@ -60,7 +60,7 @@ class PlgActionlogHierarchy extends CMSPlugin
6060
*
6161
* @return void
6262
*
63-
* @since __DEPLOY_VERSION__
63+
* @since 1.1.1
6464
*/
6565
protected function addLog($messages, $messageLanguageKey, $context, $userId = null)
6666
{
@@ -79,7 +79,7 @@ protected function addLog($messages, $messageLanguageKey, $context, $userId = nu
7979
*
8080
* @return void
8181
*
82-
* @since __DEPLOY_VERSION__
82+
* @since 1.1.1
8383
*/
8484
public function hierarchyOnAfterSaveHierarchy($data, $isNew)
8585
{
@@ -118,7 +118,7 @@ public function hierarchyOnAfterSaveHierarchy($data, $isNew)
118118
*
119119
* @return void
120120
*
121-
* @since __DEPLOY_VERSION__
121+
* @since 1.1.1
122122
*/
123123
public function hierarchyOnAfterDeleteHierarchy($data)
124124
{

plugins/actionlog/hierarchy/hierarchy.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<extension version="3.4" type="plugin" group="actionlog" method="upgrade">
33
<name>plg_actionlog_hierarchy</name>
4-
<version>__DEPLOY_VERSION__</version>
5-
<creationDate>__RELEASE_DATE__</creationDate>
4+
<version>1.1.1</version>
5+
<creationDate>16th Nov 2018</creationDate>
66
<author>Techjoomla</author>
77
<authorEmail>extensions@techjoomla.com</authorEmail>
88
<authorUrl>https://techjoomla.com</authorUrl>
9-
<copyright>Copyright (c) 2009-2018 Techjoomla. All rights reserved.</copyright>
9+
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright>
1010
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
1111
<description>PLG_ACTIONLOG_HIERARCHY_XML_DESCRIPTION</description>
1212
<files>

plugins/privacy/hierarchy/hierarchy.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* Hierarchy Privacy Plugin.
2424
*
25-
* @since __DEPLOY_VERSION__
25+
* @since 1.1.1
2626
*/
2727
class PlgPrivacyHierarchy extends PrivacyPlugin
2828
{
@@ -31,15 +31,15 @@ class PlgPrivacyHierarchy extends PrivacyPlugin
3131
*
3232
* @var boolean
3333
*
34-
* @since __DEPLOY_VERSION__
34+
* @since 1.1.1
3535
*/
3636
protected $autoloadLanguage = true;
3737

3838
/**
3939
* Database object
4040
*
4141
* @var JDatabaseDriver
42-
* @since __DEPLOY_VERSION__
42+
* @since 1.1.1
4343
*/
4444
protected $db;
4545

@@ -55,7 +55,7 @@ class PlgPrivacyHierarchy extends PrivacyPlugin
5555
*
5656
* @return PrivacyExportDomain[]
5757
*
58-
* @since __DEPLOY_VERSION__
58+
* @since 1.1.1
5959
*/
6060
public function onPrivacyExportRequest(PrivacyTableRequest $request, JUser $user = null)
6161
{
@@ -81,7 +81,7 @@ public function onPrivacyExportRequest(PrivacyTableRequest $request, JUser $user
8181
*
8282
* @return PrivacyExportDomain
8383
*
84-
* @since __DEPLOY_VERSION__
84+
* @since 1.1.1
8585
*/
8686
private function createHierarchyUsers(JTableUser $user)
8787
{
@@ -118,7 +118,7 @@ private function createHierarchyUsers(JTableUser $user)
118118
*
119119
* @return PrivacyRemovalStatus
120120
*
121-
* @since __DEPLOY_VERSION__
121+
* @since 1.1.1
122122
*/
123123
public function onPrivacyCanRemoveData(PrivacyTableRequest $request, JUser $user = null)
124124
{
@@ -140,7 +140,7 @@ public function onPrivacyCanRemoveData(PrivacyTableRequest $request, JUser $user
140140
*
141141
* @return void
142142
*
143-
* @since __DEPLOY_VERSION__
143+
* @since 1.1.1
144144
*/
145145
public function onPrivacyRemoveData(PrivacyTableRequest $request, JUser $user = null)
146146
{

plugins/privacy/hierarchy/hierarchy.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<extension version="3.4" type="plugin" group="privacy" method="upgrade">
33
<name>plg_privacy_hierarchy</name>
4-
<version>__DEPLOY_VERSION__</version>
5-
<creationDate>__RELEASE_DATE__</creationDate>
4+
<version>1.1.1</version>
5+
<creationDate>16th Nov 2018</creationDate>
66
<author>Techjoomla</author>
77
<authorEmail>extensions@techjoomla.com</authorEmail>
88
<authorUrl>https://techjoomla.com</authorUrl>
9-
<copyright>Copyright (c) 2009-2018 Techjoomla. All rights reserved.</copyright>
9+
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright>
1010
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
1111
<description>PLG_PRIVACY_HIERARCHY_XML_DESCRIPTION</description>
1212
<files>

0 commit comments

Comments
 (0)