From 17e240ea337e6962aa660b0cfd174ef6309f4162 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Apr 10 2019 10:44:46 +0000 Subject: Release 0.20 Signed-off-by: Clement Verna --- diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 69873b8..3ad5011 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,29 @@ CHANGELOG ========= +0.20 (2019-04-10) +----------------- +- fix flake8 error +- pass "errors" to exc in != 200 +- Add log_debug +- add create_pr function +- Use the requests sessions to retry failed connection +- Add an user guide documentation +- Add .tox .venv and .vscode to gitignore +- Provide more information about contribution in the Readme +- Use black to format the code base +- README: "warp" -> "wrapper" +- Added 4 API methods and their test cases for getting more stats of pagure users - user_activity_stats - user_activity_stats_by_date - list_pull_requests - list_prs_actionabl +e_by_user +- Beginning of unit test. +- Update list_issues to newest API +- Update create_issue with the latest API +- new_project: create_readme is never None +- new_project: Enable creating private repos +- Support namespaces +- Add support for listing repository branches +- list_projects: Add missing filter options + 0.10 (2017-09-06) ----------------- diff --git a/docs/conf.py b/docs/conf.py index 4d9370f..723d641 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = 'Lei Yang' # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.10' +release = '0.20' # -- General configuration --------------------------------------------------- @@ -176,4 +176,4 @@ epub_title = project epub_exclude_files = ['search.html'] -# -- Extension configuration ------------------------------------------------- \ No newline at end of file +# -- Extension configuration ------------------------------------------------- diff --git a/setup.py b/setup.py index f2d6d2c..f39fc2e 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def get_test_requires(): setup( name="libpagure", packages=["libpagure"], - version="0.10", + version="0.20", description="A Python library for Pagure APIs.", author="Lei Yang", author_email="yltt1234512@gmail.com",