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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azure-pr-manager",
3
- "version": "2.0.5",
3
+ "version": "2.1.0",
4
4
  "description": "CLI para criar Pull Requests no Azure DevOps automaticamente, com fluxo git completo (commit, push, publish branch)",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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.5 — Desenvolvido por ") + chalk.white("Higor Santos")) + c("║"));
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.5")
74
+ .version("2.1.0")
75
75
  .addHelpText("after", "\n Desenvolvido por Higor Santos");
76
76
 
77
77
  // ==================== INIT ====================