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
|
=========
ChangeLog
=========
All notable changes to this project will be documented in this file.
`Unreleased`_
=============
v1.0.3_
=======
* Add readthedocs manual page.
* Publish Python 3.13 wheels.
* Fix GitHub Actions CI/CD script for aarch64.
v1.0.2_
=======
* Published to PyPI using GItHub Actions as a trusted publisher
* Add GitHub Actions CI/CD script
* Drop Azure Pipelines CI/CD
v1.0.1_
=======
* Change deflate_tree: base_length[] and length_code[] not to be const to avoid
C2166 error on windows
* Drop support for python 3.8 and add support for python 3.13
v1.0.0_
=======
Changed
-------
* Update CMakeLists.txt developer script
v1.0.0rc2_
==========
Changed
-------
* Update test runner for library developer (#11)
* Project status to be stable
* docs: update security policy
v1.0.0rc1_
==========
Added
-----
* Support python 3.12 (#9)
Fixed
-----
* Replace deprecated PyMem_Calloc with GIL free PyMem_RawCalloc
* Use PyMem_RawFree accordingly.
Changed
-------
* Bump cibuildwheel@2.16.2
* Update cibuildwheel configuration
* CI on ci.codeberg.org
* Minimum required Python verison to 3.8
v0.3.1_
=======
Fixed
-----
* Fix import error on python 3.7.
v0.3.0_
=======
Fixed
-----
* Deflater: Fix SIGSEGV when larger files.
Changed
-------
* Use length_code table for the range as same as original deflate
* Add l_code(length) macro.
v0.2.0_
=======
Added
-----
* Deflater compession class(#2)
* Docs: add technical note about enhanced deflate(#3)
Changed
-------
* Enhanced and enabled compression test cases
* Add internal check for window alloc
v0.1.4_
=======
* Move project forge to CodeBerg.org.
* Drop github actions scripts.
* Add azure-pipelines YAML files.
v0.1.3_
=======
* Add Python 3.11 beta wheels.
v0.1.2_
=======
* Actions: Fix sdist build command to use pyproject.toml
v0.1.1_
=======
* First Alpha
* Support decompression/inflation
.. History links
.. _Unreleased: https://github.com/miurahr/inflate64/compare/v1.0.3...HEAD
.. _v1.0.3: https://github.com/miurahr/inflate64/compare/v1.0.2...v1.0.3
.. _v1.0.2: https://github.com/miurahr/inflate64/compare/v1.0.1...v1.0.2
.. _v1.0.1: https://github.com/miurahr/inflate64/compare/v1.0.0...v1.0.1
.. _v1.0.0: https://github.com/miurahr/inflate64/compare/v1.0.0rc2...v1.0.0
.. _v1.0.0rc2: https://github.com/miurahr/inflate64/compare/v1.0.0rc1...v1.0.0rc2
.. _v1.0.0rc1: https://github.com/miurahr/inflate64/compare/v0.3.1...v1.0.0rc1
.. _v0.3.1: https://github.com/miurahr/inflate64/compare/v0.3.0...v0.3.1
.. _v0.3.0: https://github.com/miurahr/inflate64/compare/v0.2.0...v0.3.0
.. _v0.2.0: https://github.com/miurahr/inflate64/compare/v0.1.4...v0.2.0
.. _v0.1.4: https://github.com/miurahr/inflate64/compare/v0.1.3...v0.1.4
.. _v0.1.3: https://github.com/miurahr/inflate64/compare/v0.1.2...v0.1.3
.. _v0.1.2: https://github.com/miurahr/inflate64/compare/v0.1.1...v0.1.2
.. _v0.1.1: https://github.com/miurahr/inflate64/compare/v0.1.0...v0.1.1
|