1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
===============
PyBCJ ChangeLog
===============
All notable changes to this project will be documented in this file.
`Unreleased`_
=============
v1.0.7_
=======
Added
-----
- Support for python 3.14
Changed
-------
- ci: fix test and release workflows
v1.0.6_
=======
Changed
-------
- ci: release workflows
Added
-----
- ci: add GitHub Actions as trusted publisher for PyPi
Removed
-------
- ci: azure-pipelines
v1.0.3_
=======
Added
-----
- Support python 3.13
Fixed
-----
- Allow build on git export source tree
Removed
-------
- Support for python 3.8
`v1.0.2`_
=========
Added
-----
- Support python 3.12
- Add cibuildwheel config
`v1.0.1`_
=========
Fixed
-----
- Add missing source distribution on pypi (#1)
`v1.0.0`_
=========
Changed
-------
- test: zipping test case data
- Add type hint
- test: use flake8 plugins
* black, colors, isort, typing
- Drop github workflows
- Move forge to codeberg.org
Fixed
-----
- gitea: issue template
`v0.6.1`_
=========
Changed
-------
- Publish wheels for python 3.11 beta
`v0.6.0`_
=========
Changed
-------
- Change internal package path for extension (#17)
- Deprecated package path ``bcj.c``. now we have
``bcj._bcj`` and ``bcj._bcjfilter`` and user should
use ``import bcj``
Added
-----
- Add pure python filter for PyPy (#17)
that is ``bcj._bcjfilter``
- Add more test cases (#17)
`v0.5.3`_
=========
Fixed
-----
- Fix segmentation fault in a proper condition (#16)
Changed
-------
- Update copyright header.
`v0.5.2`_
=========
Fixed
-----
- Fix pyproject.toml: add missing dynamic property(#14)
`v0.5.1`_
=========
Changed
-------
- Update pyproject.toml to add project section(#13)
- Test on msys2/mingw64(#11)
`v0.5.0`_
=========
Fixed
-----
- Failed to filter when multiple encode/decode call.
- Wrong data size when auto flush happened
Added
-----
- Add fuzzer test.
Changed
-------
- Black/PEP8 rules
- Change status to Beta.
`v0.2.0`_
=========
- Add ARM, ARMT, PPC, Sparc and IA64 encoder/decoder.
- Package is now bcj
`v0.1.1`_
=========
- Introduce BCJEncoder and BCJDecoder.
v0.1.0
======
- First import.
.. _Unreleased: https://codeberg.org/miurahr/pybcj/compare/v1.0.7...HEAD
.. _v1.0.7: https://codeberg.org/miurahr/pybcj/compare/v1.0.6...v1.0.7
.. _v1.0.6: https://codeberg.org/miurahr/pybcj/compare/v1.0.3...v1.0.6
.. _v1.0.3: https://codeberg.org/miurahr/pybcj/compare/v1.0.2...v1.0.3
.. _v1.0.2: https://codeberg.org/miurahr/pybcj/compare/v1.0.1...v1.0.2
.. _v1.0.1: https://codeberg.org/miurahr/pybcj/compare/v1.0.0...v1.0.1
.. _v1.0.0: https://codeberg.org/miurahr/pybcj/compare/v0.6.1...v1.0.0
.. _v0.6.1: https://codeberg.org/miurahr/pybcj/compare/v0.6.0...v0.6.1
.. _v0.6.0: https://codeberg.org/miurahr/pybcj/compare/v0.5.3...v0.6.0
.. _v0.5.3: https://codeberg.org/miurahr/pybcj/compare/v0.5.2...v0.5.3
.. _v0.5.2: https://codeberg.org/miurahr/pybcj/compare/v0.5.1...v0.5.2
.. _v0.5.1: https://codeberg.org/miurahr/pybcj/compare/v0.5.0...v0.5.1
.. _v0.5.0: https://codeberg.org/miurahr/pybcj/compare/v0.2.0...v0.5.0
.. _v0.2.0: https://codeberg.org/miurahr/pybcj/compare/v0.1.1...v0.2.0
.. _v0.1.1: https://codeberg.org/miurahr/pybcj/compare/v0.1.0...v0.1.1
|