Skip to content

Commit

Permalink
Version bump v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Mar 11, 2023
1 parent 0c92b54 commit f255d21
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 9 deletions.
38 changes: 30 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
trailrunner
===========

[![Generated by attribution][attribution-badge]][attribution-url]


v1.3.0
------

Feature release

- New: added `concurrency` parameter to Trailrunner class (#81)
- Fix: type annotations for pathspec package
- Dropped support for Python 3.6

```text
$ git shortlog -s v1.2.1...v1.3.0
16 Amethyst Reese
7 dependabot[bot]
```


v1.2.1
------

Bugfix release

- Fix: ignore file paths that don't exist, even if explicitly given

```
```text
$ git shortlog -s v1.2.0...v1.2.1
2 Amethyst Reese
```
Expand All @@ -22,7 +41,7 @@ Feature release
- New: `run_iter()` variant that yields results as they complete (#52)
- Fix: `walk()` includes explicitly listed files, even if they don't match include pattern (#51)

```
```text
$ git shortlog -s v1.1.3...v1.2.0
7 Amethyst Reese
6 dependabot[bot]
Expand All @@ -36,7 +55,7 @@ Bugfix release

- Export `__all__` from trailrunner to satisfy strict type checkers (#40)

```
```text
$ git shortlog -s v1.1.2...v1.1.3
3 Amethyst Reese
3 dependabot[bot]
Expand All @@ -51,7 +70,7 @@ Maintenance release
- Added PEP 561 `py.typed` markers
- Tested on Python 3.10

```
```text
$ git shortlog -s v1.1.1...v1.1.2
9 Amethyst Reese
29 dependabot[bot]
Expand All @@ -65,7 +84,7 @@ Compatibility update:

- Support Python 3.6 again using futures3 module (#2)

```
```text
$ git shortlog -s v1.1.0...v1.1.1
3 Amethyst Reese
1 Tim Hatch
Expand All @@ -82,7 +101,7 @@ Feature release:
- Excludes and gitignores are matched against root-relative paths as well
- Dropped support for Python 3.6, for consistency in multiprocessing

```
```text
$ git shortlog -s v1.1.0b1...v1.1.0
9 Amethyst Reese
```
Expand All @@ -99,7 +118,7 @@ Release Candidate
* Improved documentation on utilities functions and global values
* Considering if 3.6 support should stay for the final release

```
```text
$ git shortlog -s v1.0.0...v1.1.0b1
8 Amethyst Reese
```
Expand All @@ -113,8 +132,11 @@ Initial release
* `walk()`, `run()`, `walk_and_run()`
* That's pretty much it

```
```text
$ git shortlog -s v1.0.0
9 Amethyst Reese
```

[attribution-badge]:
https://img.shields.io/badge/generated%20by-attribution-informational
[attribution-url]: https://attribution.omnilib.dev
8 changes: 7 additions & 1 deletion trailrunner/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
__version__ = "1.2.1"
"""
This file is automatically generated by attribution.
Do not edit manually. Get more info at https://attribution.omnilib.dev
"""

__version__ = "1.3.0"

0 comments on commit f255d21

Please sign in to comment.