diff --git a/HISTORY.rst b/HISTORY.rst new file mode 100644 index 0000000..2650602 --- /dev/null +++ b/HISTORY.rst @@ -0,0 +1,17 @@ +.. :changelog: + +Release history +=============== + +0.2.2 (2013-10-30) +------------------ + +- More tests translated to ``en``. +- More useful log messages. + +**API Changes:** + +- ``BaseField._setup`` renamed to ``BaseField.setup``. +- ``FloatField`` has new parameters and defaults: ``thousand_separator`` and + ``decimal_separator``. +- ``BRFloatField`` is now deprecated in favor of ``FloatField`` parameters. diff --git a/README.rst b/README.rst index 46bfbe7..7279d00 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,7 @@ Library to extract data from semi-structured text documents. It's best suited for data-processing in files that do not have a formal structure and are in plain text (or that are easy to convert). Structured files -like XML, CSV and HTML doesn't fit a good use case for raspador, and have +like XML, CSV and HTML doesn't fit a good use case for Raspador, and have excellent alternatives to get data extracted, like lxml_, html5lib_, BeautifulSoup_, and PyQuery_. @@ -42,7 +42,7 @@ iterator that returns a string can be analyzed, including infinite streams. Install ======= -raspador works on CPython 2.6+, CPython 3.2+ and PyPy. To install it, use:: +Raspador works on CPython 2.6+, CPython 3.2+ and PyPy. To install it, use:: pip install raspador diff --git a/docs/source/community/updates.rst b/docs/source/community/updates.rst new file mode 100644 index 0000000..4a7ae71 --- /dev/null +++ b/docs/source/community/updates.rst @@ -0,0 +1,24 @@ +.. _updates: + +Community updates +================= + +If you'd like to stay up to date on the development of Raspador, +there are several options: + +GitHub +------ + +The best way to track the development of Raspador is through +`the GitHub repo `_. + +Twitter +------- + +I often tweet about new features and releases of Raspador. + +Follow `@fgmacedo `_ for updates. + + +.. include:: ../../../HISTORY.rst + diff --git a/docs/source/index.rst b/docs/source/index.rst index 53b0ba2..f314c79 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -7,12 +7,10 @@ Raspador |version| documentation .. toctree:: - :hidden: - intro/overview - intro/install - intro/tutorial - raspador + intro/install + raspador + community/updates Looking for specific information? Try the :ref:`genindex` or :ref:`modindex`. \ No newline at end of file diff --git a/setup.py b/setup.py index cfdbd8f..0cacecd 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ long_description=long_description, license='MIT', url="http://github.org/fgmacedo/raspador", - version='0.2.1', + version='0.2.2', packages=['raspador'], classifiers=[ 'Development Status :: 3 - Alpha',