@eui/tools 5.1.10 → 5.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.1.
|
|
1
|
+
5.1.11
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.1.11 (2022-04-28)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* app getCurrent version wrong declaration - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([28321e68](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/28321e68886f814f49462dec3bf6bfd60fc63088))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.1.10 (2022-04-28)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -10,6 +10,8 @@ const moment = require('moment');
|
|
|
10
10
|
// local
|
|
11
11
|
const tools = require('../../utils/tools');
|
|
12
12
|
|
|
13
|
+
// inner
|
|
14
|
+
const appCommon = require('./app-common');
|
|
13
15
|
|
|
14
16
|
// fetch args
|
|
15
17
|
const { dryRun } = tools.getArgs();
|
|
@@ -21,7 +23,7 @@ const { dryRun } = tools.getArgs();
|
|
|
21
23
|
module.exports.getNewVersion = (project, isSnapshot, isSupportBranch) => {
|
|
22
24
|
return Promise.resolve()
|
|
23
25
|
.then(() => {
|
|
24
|
-
return
|
|
26
|
+
return appCommon.getCurrentVersion(project);
|
|
25
27
|
})
|
|
26
28
|
.then((version) => {
|
|
27
29
|
// if the project has specific version strategy defined
|