azure-pr-manager 2.0.5 → 2.1.0
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/package.json +1 -1
- package/src/index.js +2 -2
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -54,7 +54,7 @@ function showBanner(subtitle) {
|
|
|
54
54
|
|
|
55
55
|
console.log(c(" ║") + EMPTY + c("║"));
|
|
56
56
|
console.log(c(" ║") + centerText(chalk.gray("Azure DevOps Pull Request Automation")) + c("║"));
|
|
57
|
-
console.log(c(" ║") + centerText(chalk.gray("v2.0
|
|
57
|
+
console.log(c(" ║") + centerText(chalk.gray("v2.1.0 — Desenvolvido por ") + chalk.white("Higor Santos")) + c("║"));
|
|
58
58
|
console.log(c(" ║") + EMPTY + c("║"));
|
|
59
59
|
|
|
60
60
|
if (subtitle) {
|
|
@@ -71,7 +71,7 @@ const program = new Command();
|
|
|
71
71
|
program
|
|
72
72
|
.name("azure-pr")
|
|
73
73
|
.description("CLI para criar Pull Requests no Azure DevOps automaticamente")
|
|
74
|
-
.version("2.0
|
|
74
|
+
.version("2.1.0")
|
|
75
75
|
.addHelpText("after", "\n Desenvolvido por Higor Santos");
|
|
76
76
|
|
|
77
77
|
// ==================== INIT ====================
|