Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ no [contrato de saída](docs/guia/contrato-de-saida.md).

## [Unreleased]

## [0.19.4] - 2026-08-28

### Changed

- **`--version` passa a reportar só o número.** A saída era `ca 0.19.3`: o
Symfony Console monta a versão longa concatenando o nome da aplicação, e o
nome aqui é justamente `ca`. Para quem lê, o prefixo é ruído; para quem
automatiza, é um campo a mais para descartar antes de comparar com um
semver. Passa a sair `0.19.4`, e nada no repositório dependia do formato
antigo.

## [0.19.3] - 2026-08-26

### Fixed
Expand Down Expand Up @@ -1036,7 +1047,8 @@ Primeira versão tagueada.
- Pacote renomeado de `contaazul-cli/cli` para `heitoralthmann/conta-azul-cli`,
com aviso de não-oficialidade adicionado ao README.

[Unreleased]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.3...HEAD
[Unreleased]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.4...HEAD
[0.19.4]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.3...v0.19.4
[0.19.3]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.2...v0.19.3
[0.19.2]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.1...v0.19.2
[0.19.1]: https://github.com/heitoralthmann/conta-azul-cli/compare/v0.19.0...v0.19.1
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.3
0.19.4
2 changes: 1 addition & 1 deletion docs/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -2273,5 +2273,5 @@
"version"
],
"output_default": "toon",
"version": "0.19.3"
"version": "0.19.4"
}
5 changes: 5 additions & 0 deletions src/ContaAzulApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ private function buildInput(array $argv): ArgvInput {
return new ArgvInput($argv);
}

/** Reports the bare semver, without the "ca" prefix Symfony adds by default. */
public function getLongVersion(): string {
return $this->getVersion();
}

/** Reads the version from the single-source VERSION file next to the project root. */
private static function version(): string {
$path = __DIR__ . '/../VERSION';
Expand Down
Loading