HISTORY.rst 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .. :changelog:
  2. History
  3. -------
  4. 2.6 (2017-08-08)
  5. ++++++++++++++++
  6. - Allows generation of IDNA and UTS 46 table data for different
  7. versions of Unicode, by deriving properties directly from
  8. Unicode data.
  9. - Ability to generate RFC 5892/IANA-style table data
  10. - Diagnostic output of IDNA-related Unicode properties and
  11. derived calculations for a given codepoint
  12. - Support for idna.__version__ to report version
  13. - Support for idna.idnadata.__version__ and
  14. idna.uts46data.__version__ to report Unicode version of
  15. underlying IDNA and UTS 46 data respectively.
  16. 2.5 (2017-03-07)
  17. ++++++++++++++++
  18. - Fix bug with Katakana middle dot context-rule (Thanks, Greg
  19. Shikhman.)
  20. 2.4 (2017-03-01)
  21. ++++++++++++++++
  22. - Restore IDNAError to be a subclass of UnicodeError, as some users of
  23. this library are only looking for the latter to catch invalid strings.
  24. 2.3 (2017-02-28)
  25. ++++++++++++++++
  26. - Fix bugs relating to deriving IDNAError from UnicodeError.
  27. - More memory footprint improvements (Thanks, Alex Gaynor)
  28. 2.2 (2016-12-21)
  29. ++++++++++++++++
  30. - Made some changes to the UTS 46 data that should allow Jython to get around
  31. 64kb Java class limits. (Thanks, John A. Booth and Marcin Płonka.)
  32. - In Python 2.6, skip two tests that rely on data not present in that
  33. Python version's unicodedata module.
  34. - Use relative imports to help downstream users.
  35. 2.1 (2016-03-20)
  36. ++++++++++++++++
  37. - Memory consumption optimizations. The library should consume significantly
  38. less memory through smarter data structures being used to represent
  39. relevant Unicode properties. Many thanks to Shivaram Lingamneni for this
  40. patch.
  41. - Patches to make library work better with Python 2.6. The core library
  42. currently works however the unit testing does not. (Thanks, Robert
  43. Buchholz)
  44. - Better affix all Unicode codepoint properties to a specific version.
  45. 2.0 (2015-05-18)
  46. ++++++++++++++++
  47. - Added support for Unicode IDNA Compatibility Processing (aka Unicode
  48. Technical Standard #46). Big thanks to Jon Ribbens who contributed this
  49. functionality.
  50. 1.1 (2015-01-27)
  51. ++++++++++++++++
  52. - Use IDNA properties from Unicode 6.3.0. Internet Architecture Board (IAB)
  53. issued statement recommending against the use of Unicode 7.0.0 until
  54. issues relating to U+08A1 codepoint are resolved. See http://goo.gl/Ed1n0K
  55. - Identify some cases when label would be too longer to be a legal DNS name
  56. and raise an exception. (Thanks, Ed Lewis)
  57. 1.0 (2014-10-12)
  58. ++++++++++++++++
  59. - Update IDNA properties for Unicode 7.0.0.
  60. 0.9 (2014-07-18)
  61. ++++++++++++++++
  62. - Fix issue with non-UTF-8 environments reading the README file
  63. now that it contains non-ASCII. (Thanks, Tom Prince)
  64. - Codec functions are useful, so they are separated into their own
  65. module, rather than just existing for compatibility reasons.
  66. - Add LICENSE file.
  67. 0.8 (2014-07-09)
  68. ++++++++++++++++
  69. - Added MANIFEST.in for correct source distribution compilation.
  70. 0.7 (2014-07-09)
  71. ++++++++++++++++
  72. - Filled out missing tests for various functions.
  73. - Fix bug in CONTEXTO validation for Greek lower numeral sign (U+0375)
  74. - Fix bug in CONTEXTO validation for Japanese middle dot (U+30FB)
  75. - Improved documentation
  76. - Move designation to Stable
  77. 0.6 (2014-04-29)
  78. ++++++++++++++++
  79. - Minor improvements to Python 3 support, tests (Thanks, Derek Wilson)
  80. 0.5 (2014-02-05)
  81. ++++++++++++++++
  82. - Update IDNA properties for Unicode 6.3.0.
  83. 0.4 (2014-01-07)
  84. ++++++++++++++++
  85. - Fix trove classifier for Python 3. (Thanks, Hynek Schlawack)
  86. 0.3 (2013-07-18)
  87. ++++++++++++++++
  88. - Ported to Python 3.
  89. 0.2 (2013-07-16)
  90. ++++++++++++++++
  91. - Improve packaging.
  92. - More conformant, passes all relevant tests in the Unicode TR46 test suite.
  93. 0.1 (2013-05-27)
  94. ++++++++++++++++
  95. - First proof-of-concept version.