Skip to content

Commit e93b045

Browse files
committed
Incrementing version to v1.1.1
1 parent 1415cee commit e93b045

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
## v1.1.1 (2022-05-23)
2+
- Added Python 3.10 support
3+
- aarch64 wheel support
4+
- Fix doc string for `_DynamicResizableListBuilder`
5+
- fix for unreleased buffers under mmap (issue 280)
6+
17
## v1.1.0 (2021-06-09)
28
- Validated compatibility with Python 3.10.0b2
39
- Remove all bare except
4-
- Improve _StructModuleWhich to inherit from `enum.Enum`
10+
- Improve `_StructModuleWhich` to inherit from `enum.Enum`
511
- Add Union on top level union messages
612
- Fixed memory leak in `_SegmentArrayMessageReader`
713
- Removed many pycodestyle warnings
814
- Avoid crash if `__file__` is not set by importer
915
- Fixed module.pyx `_set_<field>` for boolean fields
1016
- Fixed setup.py.tmpl support for `*.c++` files
11-
- Fixed _gen.py for python3 as `dict_keys` object are not indexable.
17+
- Fixed `_gen.py` for python3 as `dict_keys` object are not indexable.
1218
- Add test data to sdist
1319
- Add `pyproject.yaml`
1420
- Add missing inheritance to `_Schema` for `_StructSchema`

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
MAJOR = 1
2424
MINOR = 1
25-
MICRO = 0
25+
MICRO = 1
2626
TAG = ""
2727
VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG)
2828

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39
2+
envlist = py37,py38,py39,py310
33
skipsdist = True
44

55
[testenv]

0 commit comments

Comments
 (0)