Incrementing version to v1.1.1

This commit is contained in:
Jacob Alexander 2022-05-23 21:39:51 -07:00
parent 1415cee087
commit e93b0452cc
3 changed files with 10 additions and 4 deletions

View file

@ -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`

View file

@ -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)

View file

@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39
envlist = py37,py38,py39,py310
skipsdist = True
[testenv]