Skip to content

Commit

Permalink
Merge pull request scrapy#71 from scrapy/relnotes-1.1.0
Browse files Browse the repository at this point in the history
Release notes for 1.1.0
  • Loading branch information
wRAR authored Apr 21, 2023
2 parents 7c98250 + e7cb763 commit 61cda20
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- python-version: 3
env:
TOXENV: docs
- python-version: 3
env:
TOXENV: twinecheck
- python-version: 3.7
env:
TOXENV: py
Expand Down
23 changes: 21 additions & 2 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,33 @@
Release notes
=============

.. _release-1.1.0:

itemloaders 1.1.0 (2023-04-21)
------------------------------

- Added JMESPath support (:meth:`ItemLoader.add_jmes` etc.), requiring Parsel
1.8.1+ (:gh:`68`)

- Added official support for Python 3.11 (:gh:`59`)

- Removed official support for Python 3.6 (:gh:`61`)

- Internal code cleanup (:gh:`65`, :gh:`66`)

- Added ``pre-commit`` support and applied changes from ``black`` and
``flake8`` (:gh:`70`).

- Improved CI (:gh:`60`)

.. _release-1.0.6:

itemloaders 1.0.6 (2022-08-29)
------------------------------

Fixes a regression introduced in 1.0.5 that would cause the ``re`` parameter of
:meth:`ItemLoader.add_xpath` and similar methods to be passed to lxml, which
would trigger an exception when the value of ``re`` was a compiled pattern and
:meth:`ItemLoader.add_xpath` and similar methods to be passed to lxml, which
would trigger an exception when the value of ``re`` was a compiled pattern and
not a string (:gh:`56`)

.. _release-1.0.5:
Expand Down
9 changes: 9 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,12 @@ deps = {[docs]deps}
setenv = {[docs]setenv}
commands =
sphinx-build -W -b html . {envtmpdir}/html

[testenv:twinecheck]
basepython = python3
deps =
twine==4.0.2
build==0.10.0
commands =
python -m build --sdist
twine check dist/*

0 comments on commit 61cda20

Please sign in to comment.