Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
damnever committed Mar 14, 2020
1 parent a3d0d7d commit b174b14
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
28 changes: 28 additions & 0 deletions CHANGELOGS.rst → CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
Change Logs
-----------

Version 0.10.rc0 (2020.03.14)
^^^^^^^^^^^^^^^^^^^^^^^^^^

- Refactored the main logic, **the interface has been changed**, be careful if you are using ``pigar`` as a library.
- Handle the HTTP error, fixed `#61 <https://github.com/damnever/pigar/issues/61>`_.
- Ignore local packages quietly, fixed `#47 <https://github.com/damnever/pigar/issues/47>`_, `#58 <https://github.com/damnever/pigar/issues/58>`_ and `#65 <https://github.com/damnever/pigar/issues/65>`_.

Thank `@bganglia <https://github.com/bganglia>`_ for the following contributions:

- Add Jupyter notebook(``.ipynb``) support, refer to `#69 <https://github.com/damnever/pigar/issues/69>`_.
- Option to turn off filenames and line numbers in requirements.txt, refer to `#65 <https://github.com/damnever/pigar/issues/65>`_.
- Fix check path, refer to `#64 <https://github.com/damnever/pigar/issues/64>`_.
- And `more <https://github.com/damnever/pigar/pulls?q=is%3Apr+author%3Abganglia>_`.


Version 0.9.2 (2019.04.11)
^^^^^^^^^^^^^^^^^^^^^^^^^^

- Make version comparison operator configurable, fixed `#37 <https://github.com/damnever/pigar/issues/37>`_


Version 0.9.1 (2019.02.17)
^^^^^^^^^^^^^^^^^^^^^^^^^^

- Fixed potential security vulnerabilities by updating requests.
- Fixed `#49 <https://github.com/damnever/pigar/issues/49>`_


Version 0.9.0 (2018.08.12)
^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 2 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include pigar/.db.sqlite3
include CHANGELOGS.rst
include README.rst
include README-PYPI.rst
include CHANGELOG.rst
include README.md
include LICENSE
include makefile
include pigar/tests/fake_simple_html.txt
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
You can find more information on `GitHub <https://github.com/damnever/pigar>`_ .
""" # noqa

with codecs.open('CHANGELOGS.rst', encoding='utf-8') as f:
with codecs.open('CHANGELOG.rst', encoding='utf-8') as f:
change_logs = f.read()

install_requires = [
Expand Down

0 comments on commit b174b14

Please sign in to comment.