Skip to content

Commit

Permalink
Version bump v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Apr 17, 2023
1 parent 6288ee3 commit 26593d8
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 29 deletions.
78 changes: 50 additions & 28 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
aiosqlite
=========

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


v0.19.0
-------

Feature release

- Add support for setting cursor `row_factory` (#229)
- Dropped unused compatibility shims for 3.5 and 3.6
- Deprecated: Python 3.7 support will be dropped in v0.20.0

```text
$ git shortlog -s v0.18.0...v0.19.0
13 Amethyst Reese
1 Daniel Baulig
4 dependabot[bot]
```


v0.18.0
-------

Expand All @@ -13,10 +33,9 @@ Feature release
- Docmentation improvements (#108)
- Dropped support for Python 3.7, added support for Python 3.10 and 3.11 (#208)

```
```text
$ git shortlog -s v0.17.0...v0.18.0
11 Amethyst Reese
20 Amethyst Reese
31 Amethyst Reese
3 Nico0 Smart
3 Nicolas Martinez
37 dependabot[bot]
Expand All @@ -34,7 +53,7 @@ Feature release
* Connection objects now raise ValueError when closed and a command is executed (#79)
* Fix documented examples in readme (#104)

```
```text
$ git shortlog -s v0.16.1...v0.17.0
3 Amethyst Reese
5 Mariano Sorgente
Expand All @@ -51,7 +70,7 @@ Bug fix release
- Reduce logging severity for exceptions (#93)
- Stop logging result objects; they can be big (#102)

```
```text
$ git shortlog -s v0.16.0...v0.16.1
1 Alexei Chetroi
3 Amethyst Reese
Expand All @@ -71,11 +90,11 @@ Feature release
* Allow user to catch exceptions from `close()` (#68, #90)
* Tested under Python 3.9 (#91)

```
```text
$ git shortlog -s v0.15.0...v0.16.0
14 Amethyst Reese
3 Caleb Hattingh
1 Groosha
14 Amethyst Reese
1 Lonami
4 Lonami Exo
4 ZsoltM
Expand All @@ -93,7 +112,7 @@ Feature release
- Move cursors into separate module from connections
- Deprecated `loop` parameter to `connect()` and `Connection`

```
```text
$ git shortlog -s v0.14.1...v0.15.0
7 Amethyst Reese
```
Expand All @@ -106,7 +125,7 @@ Bugfix release

- Remove debugging print() calls. Oops! (#72)

```
```text
$ git shortlog -s v0.14.0...v0.14.1
2 Amethyst Reese
1 Spyros Roum
Expand All @@ -122,7 +141,7 @@ Feature release
- PEP 561 support added to mark the package as type annotated (#69)
- Better/fixed type annotations for context managers (#70)

```
```text
$ git shortlog -s v0.13.0...v0.14.0
5 Amethyst Reese
3 montag451
Expand All @@ -140,7 +159,7 @@ Feature release
- Fixed possible hung thread if connection failed (#55)
- Dropped support for Python 3.5

```
```text
$ git shortlog -s v0.12.0...v0.13.0
32 Amethyst Reese
1 pyup.io bot
Expand All @@ -156,7 +175,7 @@ Feature Release
- Add support for custom functions (#58)
- Official support for Python 3.8

```
```text
$ git shortlog -s v0.11.0...v0.12.0
4 Amethyst Reese
1 dmitrypolo
Expand All @@ -172,7 +191,7 @@ Feature release v0.11.0
- Added support for `set_progress_handler` (#49)
- Improved and updated documentation

```
```text
$ git shortlog -s v0.10.0...v0.11.0
11 Amethyst Reese
4 Stanislas
Expand All @@ -190,7 +209,7 @@ Feature release v0.10.0:
- Support using connections without context managers (#29)
- Include test suite in aiosqlite package

```
```text
$ git shortlog -s v0.9.0...v0.10.0
16 Amethyst Reese
1 Simon Willison
Expand All @@ -206,7 +225,7 @@ Feature release v0.9.0:
- Support for sqlite extensions
- Fixed support for type annotations on early Python 3.5

```
```text
$ git shortlog -s v0.8.1...v0.9.0
2 Alexander Lyon
3 Amethyst Reese
Expand All @@ -220,10 +239,10 @@ Bug fix release v0.8.1:

- Fix connections to byte string db locations (#20)

```
```text
$ git shortlog -s v0.8.0...v0.8.1
1 DevilXD
6 Amethyst Reese
1 DevilXD
```


Expand All @@ -237,7 +256,7 @@ Major release v0.8.0:
primary event loop, resulting in better performance of
asyncio applications using aiosqlite.

```
```text
$ git shortlog -s v0.7.0...v0.8.0
3 Amethyst Reese
2 Matthew Schubert
Expand All @@ -252,10 +271,10 @@ Feature release v0.7.0:
- Added macros for combined insert/id and select/fetch
- Better perf testing output

```
```text
$ git shortlog -s v0.6.0...v0.7.0
1 Grigi
4 Amethyst Reese
1 Grigi
```


Expand All @@ -269,10 +288,10 @@ Feature release v0.6.0:
- Unit tests now use aiounittest instead of a custom test harness
- Limited set of performance tests now available

```
```text
$ git shortlog -s v0.5.0...v0.6.0
1 Grigi
8 Amethyst Reese
1 Grigi
```


Expand All @@ -285,7 +304,7 @@ Feature release v0.5.0:
- Additional connection properties for row/text factory, total changes
- Better readme

```
```text
$ git shortlog -s v0.4.0...v0.5.0
6 Amethyst Reese
```
Expand All @@ -299,7 +318,7 @@ Feature release v0.4.0:
- Enable using a custom asyncio event loop
- Increase performance by decreasing sleep time

```
```text
$ git shortlog -s v0.3.0...v0.4.0
15 Amethyst Reese
1 Justin Kula
Expand All @@ -314,7 +333,7 @@ Feature release v0.3.0:

- Cursors can be used as context managers

```
```text
$ git shortlog -s v0.2.2...v0.3.0
6 Amethyst Reese
5 Linus Lewandowski
Expand All @@ -329,7 +348,7 @@ Minor release:
- Correct aiosqlite.__version__
- Markdown readme, release via twine

```
```text
$ git shortlog -s v0.2.1...v0.2.2
5 Amethyst Reese
```
Expand All @@ -343,7 +362,7 @@ Minor release v0.2.1:
- Increase polling speed on event loop
- Using black and pylint

```
```text
$ git shortlog -s v0.2.0...v0.2.1
8 Amethyst Reese
2 Pavol Vargovcik
Expand All @@ -355,8 +374,11 @@ v0.2.0

Beta version 0.2.0

```
```text
$ git shortlog -s v0.2.0
20 Amethyst Reese
```

[attribution-badge]:
https://img.shields.io/badge/generated%20by-attribution-informational
[attribution-url]: https://attribution.omnilib.dev
2 changes: 1 addition & 1 deletion aiosqlite/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
Do not edit manually. Get more info at https://attribution.omnilib.dev
"""

__version__ = "0.18.0"
__version__ = "0.19.0"

0 comments on commit 26593d8

Please sign in to comment.