Skip to content

Commit

Permalink
Update changelog.md
Browse files Browse the repository at this point in the history
Adds new version 4.0.0
  • Loading branch information
LuqueDaniel committed Dec 9, 2016
1 parent 743bd72 commit c81cc94
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2012 - 2015 - Daniel Luque
Copyright (c) 2012 - 2016 - Daniel Luque

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Pybooru - Package for Danbooru/Moebooru API.
[![Build Status](https://travis-ci.org/LuqueDaniel/pybooru.svg?branch=master)](https://travis-ci.org/LuqueDaniel/pybooru) [![PyPI](https://img.shields.io/pypi/status/Pybooru.svg?style=flat-square)](https://pypi.python.org/pypi/Pybooru/) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/LuqueDaniel/pybooru/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/Pybooru.svg?style=flat-square)](https://pypi.python.org/pypi/Pybooru/)
[![Build Status](https://travis-ci.org/LuqueDaniel/pybooru.svg?branch=master)](https://travis-ci.org/LuqueDaniel/pybooru) [![PyPI](https://img.shields.io/pypi/status/Pybooru.svg?style=flat-square)](https://pypi.python.org/pypi/Pybooru/)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/LuqueDaniel/pybooru/master/LICENSE)
[![Documentation Status](https://readthedocs.org/projects/pybooru/badge/?version=stable)](http://pybooru.readthedocs.io/en/stable/?badge=stable)

**Pybooru** is a Python package to access to the API of Danbooru/Moebooru based sites.

Expand Down Expand Up @@ -79,6 +82,9 @@ client = Moebooru('konachan.com', username='your-username', password='your-passw
client.comment_create(post_id=id, comment_body='Comment content')
```

## Documentation
You can consult the documentation on **[Read the Docs](http://pybooru.readthedocs.io/en/stable/)**

## CI Report
- https://travis-ci.org/LuqueDaniel/pybooru

Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Examples of use
See more examples of `Danbooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/danbooru>`_ and `Moebooru <https://github.com/LuqueDaniel/pybooru/tree/develop/examples/moebooru>`_.

Documentation
-------------
You can consult the documentation on `Read the Docs <http://pybooru.readthedocs.io/en/stable/>`_

Changelog
---------
- https://github.com/LuqueDaniel/pybooru/blob/master/changelog.md
Expand Down
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Pybooru - Changelog

## Pybooru 4.0.0 - (12/09/2016)
- Added support to Danbooru.
- Now Danbooru and Moebooru are two separed classes.
- Pybooru has been refactored.
- Moebooru (only): added support for API versioning.
- Added PybooruAPIError exception.
- Added **last_call** attribute to Danbooru and Moebooru to store last request information.
- Examples has been updated.
- Added **[documentation](http://pybooru.readthedocs.io/en/stable/)** to Pybooru (with Sphinx).
- Added some tools for Pybooru (tools folder)
- Refactored setup.py.
- End of Python 3.2.x support.
- Fixed parameter comparison (python 2.X only)
- In this version there's a nice amount of improvements.

## Pybooru 3.0.1 - (01/13/2015)
- Minors changes

Expand Down

0 comments on commit c81cc94

Please sign in to comment.