1
0

Accepting request 283921 from home:dimstar:Factory

update to 0.22.0

OBS-URL: https://build.opensuse.org/request/show/283921
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygit2?expand=0&rev=23
This commit is contained in:
Denisart Benjamin
2015-02-03 16:09:25 +00:00
committed by Git OBS Bridge
parent 89d9f25bc6
commit 7ca7e83303
4 changed files with 37 additions and 5 deletions

View File

@ -1,3 +1,34 @@
-------------------------------------------------------------------
Tue Feb 3 15:06:02 UTC 2015 - dimstar@opensuse.org
- Update to version 0.22.0:
+ Update to libgit2 v0.22
(https://github.com/libgit2/pygit2/pull/459)
+ Add support for libgit2 feature detection (new pygit2.features
and pygit2.GIT_FEATURE_*)
(https://github.com/libgit2/pygit2/pull/475)
+ New Repository.remotes (RemoteCollection)
(https://github.com/libgit2/pygit2/pull/447)
+ API Changes:
- Prototype of clone_repository changed, check documentation
- Removed clone_into, use clone_repository with callbacks instead
- Use Repository.remotes.rename(name, new_name) instead of
Remote.rename(new_name)
- Use Repository.remotes.delete(name) instead of Remote.delete()
- Now Remote.push(...) takes a list of refspecs instead of just one
- Change Patch.old_id, Patch.new_id, Note.annotated_id,
RefLogEntry.oid_old and RefLogEntry.oid_new to be Oid objects
instead of strings
(https://github.com/libgit2/pygit2/pull/449)
+ Other:
- Fix init_repository when passing optional parameters
workdir_path, description, template_path, initial_head or
origin_url.
- Fix use-after-free when patch outlives diff.
- Documentation improvements.
- Make the GPL exception explicit in setup.py.
- Add python-setuptools BuildRequires: new build dependency.
-------------------------------------------------------------------
Tue Sep 2 18:20:17 UTC 2014 - p.drouand@gmail.com