Skip to content

Commit 26a9474

Browse files
authored
Release v2.0.0 (#128)
1 parent 9b569e8 commit 26a9474

2 files changed

Lines changed: 26 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## 2.0.0 - 2023-07-23
910

11+
### Added
1012

11-
[Unreleased]: https://github.com/brazilian-utils/brutils-python/releases
13+
- Utilitário `is_valid_cep` (#123)
14+
- Utilitário `format_cep` (#125)
15+
- Utilitário `remove_symbols_cep` (#126)
16+
- Utilitário `generate_cep` (#124)
17+
- Utilitário `is_valid_cpf` (#34)
18+
- Utilitário `format_cpf` (#54)
19+
- Utilitário `remove_symbols_cpf` (#57)
20+
- Utilitário `is_valid_cnpj` (#36)
21+
- Utilitário `format_cnpj` (#52)
22+
- Utilitário `remove_symbols_cnpj` (#58)
23+
24+
### Deprecated
25+
26+
- Utilitário `cpf.sieve`
27+
- Utilitário `cpf.display`
28+
- Utilitário `cpf.validate`
29+
- Utilitário `cnpj.sieve`
30+
- Utilitário `cnpj.display`
31+
- Utilitário `cnpj.validate`
32+
33+
[Unreleased]: https://github.com/brazilian-utils/brutils-python/compare/v2.0.0...HEAD
34+
[2.0.0]: https://github.com/brazilian-utils/brutils-python/releases/tag/v2.0.0

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tool.poetry]
22
name = "brutils"
3-
version = "1.0.3"
3+
version = "2.0.0"
44
description = "Utils library for specific Brazilian businesses"
55
authors = ["The Brazilian Utils Organization"]
66
license = "MIT"
77
readme = "README.md"
88
repository = "https://github.com/brazilian-utils/brutils"
9-
keywords = ["cpf", "cnpj", "document", "validation", "brazil", "brazilian"]
9+
keywords = ["cpf", "cnpj", "cep", "document", "validation", "brazil", "brazilian"]
1010
classifiers = [
1111
"Development Status :: 5 - Production/Stable",
1212
"License :: OSI Approved :: MIT License",
@@ -28,7 +28,6 @@ classifiers = [
2828
[tool.poetry.dependencies]
2929
python = "^3.7"
3030

31-
3231
[tool.poetry.group.test.dependencies]
3332
coverage = "^7.2.7"
3433

0 commit comments

Comments
 (0)