Skip to content

Commit

Permalink
Update version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrencepreilly committed Oct 18, 2021
1 parent 54394d6 commit abc26b7
Show file tree
Hide file tree
Showing 10 changed files with 347 additions and 277 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.8.1]

### Added

- There is now a Flake8 flag exposing the ignore regex option. This will
allow you to ignore a given file/set of files based on a regex during
a CI pipeline, etc. Thanks to @AdamGleave for the pull request!

### Changed

- Removed logging for some aspects of analysis, and an assertion from the
raise visitor. They were a little overly-broad, and it was causing some
integration tests to fail when run against new repos.


## [1.8.0]

### Added
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ would like a feature in *darglint*.

**Table of Contents**:

- [Project Status](#project-status)
- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
Expand All @@ -26,6 +27,15 @@ would like a feature in *darglint*.
- [Contribution](#development-and-contributions)


## Project Status

I no longer work with Python regularly, and I'd like to spend some more
time on other projects. So while I'll continue to maintain darglint,
I likely won't be adding significant new features. That said, I will
try to accept pull requests. See the contribution section for more
information. Consider it in maintenance mode.


## Installation

To install *darglint*, use pip.
Expand Down
2 changes: 1 addition & 1 deletion darglint/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def print_error_list():


def print_version():
print('1.8.0')
print('1.8.1')


def main():
Expand Down
2 changes: 1 addition & 1 deletion darglint/flake8_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .strictness import Strictness


__version__ = '1.8.0'
__version__ = '1.8.1'


class DarglintChecker(object):
Expand Down
17 changes: 0 additions & 17 deletions docker-build/Dockerfile.test35

This file was deleted.

1 change: 0 additions & 1 deletion docker-build/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.phony: all
all:
docker build -t darglint-35 -f Dockerfile.test35 . && \
docker build -t darglint-36 -f Dockerfile.test36 . && \
docker build -t darglint-37 -f Dockerfile.test37 . && \
docker build -t darglint-38 -f Dockerfile.test38 . && \
Expand Down
Loading

0 comments on commit abc26b7

Please sign in to comment.