mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
Incrementing version to v1.1.1
This commit is contained in:
parent
1415cee087
commit
e93b0452cc
3 changed files with 10 additions and 4 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,14 +1,20 @@
|
|||
## v1.1.1 (2022-05-23)
|
||||
- Added Python 3.10 support
|
||||
- aarch64 wheel support
|
||||
- Fix doc string for `_DynamicResizableListBuilder`
|
||||
- fix for unreleased buffers under mmap (issue 280)
|
||||
|
||||
## v1.1.0 (2021-06-09)
|
||||
- Validated compatibility with Python 3.10.0b2
|
||||
- Remove all bare except
|
||||
- Improve _StructModuleWhich to inherit from `enum.Enum`
|
||||
- Improve `_StructModuleWhich` to inherit from `enum.Enum`
|
||||
- Add Union on top level union messages
|
||||
- Fixed memory leak in `_SegmentArrayMessageReader`
|
||||
- Removed many pycodestyle warnings
|
||||
- Avoid crash if `__file__` is not set by importer
|
||||
- Fixed module.pyx `_set_<field>` for boolean fields
|
||||
- Fixed setup.py.tmpl support for `*.c++` files
|
||||
- Fixed _gen.py for python3 as `dict_keys` object are not indexable.
|
||||
- Fixed `_gen.py` for python3 as `dict_keys` object are not indexable.
|
||||
- Add test data to sdist
|
||||
- Add `pyproject.yaml`
|
||||
- Add missing inheritance to `_Schema` for `_StructSchema`
|
||||
|
|
2
setup.py
2
setup.py
|
@ -22,7 +22,7 @@ _this_dir = os.path.dirname(__file__)
|
|||
|
||||
MAJOR = 1
|
||||
MINOR = 1
|
||||
MICRO = 0
|
||||
MICRO = 1
|
||||
TAG = ""
|
||||
VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG)
|
||||
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py37,py38,py39
|
||||
envlist = py37,py38,py39,py310
|
||||
skipsdist = True
|
||||
|
||||
[testenv]
|
||||
|
|
Loading…
Add table
Reference in a new issue