Skip to content

Commit

Permalink
Merge branch 'aio-libs:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhatiya999 authored Nov 21, 2022
2 parents 3d5b58e + fa239a2 commit c004f06
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ environment:
KAFKA_VERSION: "2.8.1"
SCALA_VERSION: "2.13"
matrix:
- PYTHON: "C:\\Python311"
- PYTHON: "C:\\Python311-x64"
- PYTHON: "C:\\Python310"
- PYTHON: "C:\\Python310-x64"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python39-x64"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python38-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"

image: Visual Studio 2022

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ jobs:

- name: Install python dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install -r requirements-win-test.txt
pip install ${{ matrix.aiokafka_whl }}
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements-win-test.txt
python -m pip install ${{ matrix.aiokafka_whl }}
shell: bash

- name: Run Unit Tests
Expand Down
25 changes: 25 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@ Changelog
=========


0.8.0 (2022-11-21)
==================

New features:

* Add codec for ZStandard compression (KIP-110) (pr #801)
* Add basic admin client functionality (pr #811 started by @gabriel-tincu)
* Drop support for Python 3.6, add support and pre-built packages for Python
3.10 (pr #841)


Bugfixes:

* Fix `KeyError` on solitary abort marker (issue #781, pr #782 by @pikulmar)
* Fix handling unsupported compression codec (issue #795)
* Handled other SASL mechanism in logging (issue #852, pr #861 by @mangin)


Improved Documentation:

* Fix documentation on how to install optional features (issue #645)
* Improve the rendering of the documentation (pr #722 by @multani)
* Fix `MyRebalancer` example in `docs/consumer.rst` (pr #731 by @aamalev)


0.7.2 (2021-09-02)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/645.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/722.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/731.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/782.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/795.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/801.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/811.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/841.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/852.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion aiokafka/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.7.2' # noqa
__version__ = '0.8.0' # noqa

from .abc import ConsumerRebalanceListener
from .client import AIOKafkaClient
Expand Down

0 comments on commit c004f06

Please sign in to comment.