Skip to content

Commit

Permalink
Merge pull request #39 from scrapy/update-history-and-document-release
Browse files Browse the repository at this point in the history
Update history, add release checklist and other doc improvements
  • Loading branch information
dangra committed Apr 27, 2016
2 parents 53721b9 + 54a4ce1 commit fde9087
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 14 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include AUTHORS.rst
include CONTRIBUTING.rst
include HISTORY.rst
include NEWS
include LICENSE
include README.rst

Expand Down
24 changes: 15 additions & 9 deletions HISTORY.rst → NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,60 +3,66 @@
History
-------

1.0.2 (2016-04-26)
~~~~~~~~~~~~~~~~~~

* Fix bug in exception handling causing original traceback to be lost
* Added docstrings and other doc fixes

1.0.1 (2015-08-24)
------------------
~~~~~~~~~~~~~~~~~~

* Updated PyPI classifiers
* Added docstrings for csstranslator module and other doc fixes


1.0.0 (2015-08-22)
------------------
~~~~~~~~~~~~~~~~~~

* Documentation fixes


0.9.6 (2015-08-14)
------------------
~~~~~~~~~~~~~~~~~~

* Updated documentation
* Extended test coverage


0.9.5 (2015-08-11)
------------------
~~~~~~~~~~~~~~~~~~

* Support for extending SelectorList


0.9.4 (2015-08-10)
------------------
~~~~~~~~~~~~~~~~~~

* Try workaround for travis-ci/dpl#253


0.9.3 (2015-08-07)
------------------
~~~~~~~~~~~~~~~~~~

* Add base_url argument


0.9.2 (2015-08-07)
------------------
~~~~~~~~~~~~~~~~~~

* Rename module unified -> selector and promoted root attribute
* Add create_root_node function


0.9.1 (2015-08-04)
---------------------
~~~~~~~~~~~~~~~~~~

* Setup Sphinx build and docs structure
* Build universal wheels
* Rename some leftovers from package extraction


0.9.0 (2015-07-30)
---------------------
~~~~~~~~~~~~~~~~~~

* First release on PyPI.
2 changes: 2 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. include:: ../NEWS

7 changes: 4 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to Parsel's documentation!
======================================
.. include:: ../README.rst

Parsel Documentation Contents
=============================

Contents:

.. toctree::
:maxdepth: 2

readme
installation
usage
history
Expand Down
2 changes: 2 additions & 0 deletions docs/readme.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. include:: ../README.rst

9 changes: 9 additions & 0 deletions release.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Release procedures
------------------

* Update NEWS file with the release notes
* Run bumpversion with the proper release type
* Push code and tags to GitHub to trigger build
* Copy release notes to https://github.com/scrapy/parsel/releases
* Verify in a temporary virtualenv that ``pip install parsel`` installs the
latest version
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with open('README.rst') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
with open('NEWS') as history_file:
history = history_file.read().replace('.. :changelog:', '')

test_requirements = [
Expand Down

0 comments on commit fde9087

Please sign in to comment.