Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pt-br): replace bad example for breaking changes in pt-BR version #458

Merged
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
fix(pt-br): replace bad example for breaking changes in pt-BR version
There were some examples including <refactor> type in a breaking
change commit. They were replaced by examples from the english
version.

Refs: #457.
  • Loading branch information
yudi-azvd committed Jul 5, 2022
commit 1bf0713eee69a7d72e0d1d71cbd3f5dbaa20dffc
6 changes: 3 additions & 3 deletions content/v1.0.0/index.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ BREAKING CHANGE: a chave `extends`, no arquivo de configuração, agora é utili
### Mensagem de commit com `!` para chamar a atenção para quebra a compatibilidade

```
refactor!: remove suporte para Node 6
feat!: envia email para o cliente quando o produto é enviado
```

### Mensagem de commit com escopo e `!` para chamar a atenção para quebra a compatibilidade
```
refactor(execução)!: remove suporte para Node 6
feat(api)!: envia email para o cliente quando o produto é enviado
```

### Commit message with both `!` and BREAKING CHANGE footer

```
refactor!: remove suporte para Node 6
chore!: remove suporte para Node 6

BREAKING CHANGE: refatorar para usar recursos do JavaScript não disponíveis no Node 6.
```
Expand Down