Skip to content

Commit

Permalink
Parametrizações para release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlencarGabriel committed Sep 2, 2024
1 parent 09dbbd6 commit e93ffd1
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 42 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ All notable changes to the "protheusdoc-vscode" extension will be documented in

---

## [0.10.1] - 2024-09-02

### Changed

- Atualizado lista de releases Protheus na configuração `protheusDoc.versao_default` [PR #88](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).

### Fixed

- Sintaxe incorreta na busca da tipagem de retorno dos métodos. [#72](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72).

### Thanks

- [Rodrigo Mello](https://github.com/rodsmello) pela contribuíção na lista de releases Protheus via [Pull Request](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).
- [Izac](https://github.com/izacsc) pela identificação do problema na tipagem de retorno dos métodos.

---

## [0.10.0] - 2023-11-13

### Changed
Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "protheusdoc-vscode",
"displayName": "ProtheusDoc for VsCode (AdvPL)",
"description": "Suporte à documentação TOTVS ProtheusDoc para VsCode.",
"version": "0.10.0",
"version": "0.10.1",
"publisher": "AlencarGabriel",
"icon": "images/Icon.png",
"homepage": "https://github.com/AlencarGabriel/ProtheusDoc-VsCode",
Expand Down
14 changes: 6 additions & 8 deletions release-body.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
## [0.10.1] - 2024-09-02

### Changed

- Atualizado dependencia npm **protheusdoc-html** para **^1.1.8**.
- Adaptação da Tag `@see` com Múltiplos [#61](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/61).
- Atualizado lista de releases Protheus na configuração `protheusDoc.versao_default` [PR #88](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).

### Fixed

- Quando o nome da função contém o caracter "_" (underline), a documentação gerada suprime o restante. [#76](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/76).
- Gerar Documentação HTML - Pastas [#79](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/79).
- Sintaxe incorreta na busca da tipagem de retorno dos métodos. [#72](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72).

### Thanks

- [Robson Rogério](https://github.com/robsonrosilva/) pelos ajustes na biblioteca base da geração de HTML.
- [@carloseniemeyer](https://github.com/carloseniemeyer) pela identificação do problema com múltiplos atributos `@see`.
- [Edson Hornberger](https://github.com/edhornberger) pela identificação do problema na geração de HTML com diretórios contendo caracteres especiais.
- [Leandro Michelsen](https://github.com/leandromichelsen) pela identificação do problema na geração de HTML com funções contendo "_" (underline).
- [Rodrigo Mello](https://github.com/rodsmello) pela contribuíção na lista de releases Protheus via [Pull Request](https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88).
- [Izac](https://github.com/izacsc) pela identificação do problema na tipagem de retorno dos métodos.
13 changes: 4 additions & 9 deletions src/whatsNew.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,13 @@ export class WhatsNewDocContentProvider implements ContentProvider {
// });

changeLog.push({
kind: ChangeLogKind.CHANGED, message: `Adaptação da Tag <b>@see</b> com Múltiplos - <a title=\"Open Issue #61\"
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/61\">Saiba mais</a>.`
kind: ChangeLogKind.CHANGED, message: `Atualizado lista de releases Protheus na configuração <b>protheusDoc.versao_default</b> - <a title=\"Open Pull Request #88\"
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/pull/88\">Saiba mais</a>.`
});

changeLog.push({
kind: ChangeLogKind.FIXED, message: `Quando o nome da função contém o caracter "_" (underline), a documentação gerada suprime o restante. - <a title=\"Open Issue #76\"
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/76\">Saiba mais</a>.`
});

changeLog.push({
kind: ChangeLogKind.FIXED, message: `Gerar Documentação HTML - Pastas - <a title=\"Open Issue #79\"
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/79\">Saiba mais</a>.`
kind: ChangeLogKind.FIXED, message: `Sintaxe incorreta na busca da tipagem de retorno dos métodos - <a title=\"Open Issue #72\"
href=\"https://github.com/AlencarGabriel/ProtheusDoc-VsCode/issues/72\">Saiba mais</a>.`
});

return changeLog;
Expand Down

0 comments on commit e93ffd1

Please sign in to comment.