Skip to content

Commit

Permalink
Release version 0.15.0 of Dlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Jun 13, 2024
1 parent cbf430b commit 1c3f0a3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.0] - 2024-06-13

### Added

- Support for Python 3.12

### Removed

- `tests` from packages ([#60](https://github.com/dlint-py/dlint/issues/60))
- Support for Python 3.7

## [0.14.1] - 2023-04-10

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Usage: flake8 [options] file file ...

...

Installed plugins: dlint: 0.14.1, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
Installed plugins: dlint: 0.15.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
```

Note the `dlint: 0.14.1`.
Note the `dlint: 0.15.0`.

# Using

Expand Down
2 changes: 1 addition & 1 deletion dlint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from . import util # noqa F401

__name__ = 'dlint'
__version__ = '0.14.1'
__version__ = '0.15.0'
__description__ = (
"Dlint is a tool for encouraging best coding practices "
"and helping ensure Python code is secure."
Expand Down

0 comments on commit 1c3f0a3

Please sign in to comment.