2017-08-24 18:16:36 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Aug 24 15:45:45 UTC 2017 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
- Update to 0.26.0
|
|
|
|
* Update to libgit2 v0.26
|
|
|
|
* Drop support for Python 3.2, add support for cffi 1.10
|
|
|
|
* New ``Repository.revert_commit(...)``
|
|
|
|
* New ``Branch.is_checked_out()``
|
|
|
|
* Various fixes
|
|
|
|
|
2017-04-08 21:04:55 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Apr 7 22:12:04 UTC 2017 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
- Update to 0.25.0.
|
|
|
|
* Make pygit2 throw if tree of a commit is not found
|
|
|
|
* fixed cached memory tests
|
|
|
|
* Added mwindow_mapped_limit, cached_memory, enable_caching,
|
|
|
|
cache_max_size, cache_object_limit options
|
|
|
|
- Implement singlespec version.
|
|
|
|
|
2017-01-12 13:19:25 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jan 11 21:49:47 UTC 2017 - astieger@suse.com
|
|
|
|
|
|
|
|
- update to 0.24.2:
|
|
|
|
* Fix when libgit2 error messages have non-ascii chars
|
|
|
|
* Documentation improvements
|
|
|
|
- includes changes from 0.24.1
|
|
|
|
* New Repository.listall_reference_objects()
|
|
|
|
* Fix ``Repository.write_archive(...)`
|
|
|
|
* Reproducible builds
|
|
|
|
* Documentation fixes
|
|
|
|
|
2016-11-02 10:32:38 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Nov 2 09:27:00 UTC 2016 - kkaempf@suse.com
|
|
|
|
|
|
|
|
- Fix Url link (old one was dead).
|
|
|
|
|
2016-08-15 16:23:37 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Aug 12 16:35:20 UTC 2016 - tbechtold@suse.com
|
|
|
|
|
|
|
|
- require the cffi version it was built against
|
|
|
|
- Use pypi.io as Source url
|
|
|
|
|
2016-04-08 11:48:27 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Apr 7 19:47:24 UTC 2016 - zaitor@opensuse.org
|
|
|
|
|
|
|
|
- Update to version 0.24.0:
|
|
|
|
+ Support Python 3.5.
|
|
|
|
+ New dependency, python-six
|
|
|
|
+ New Repository.path_is_ignored(path).
|
|
|
|
+ Fix error in Repository(path) when path is a bytes string.
|
|
|
|
+ Fix memory issue in Repository.describe(...).
|
|
|
|
+ Allow testing with `tox.
|
|
|
|
- Add python-six BuildRequires following upstream changes.
|
|
|
|
|
2015-09-30 11:54:35 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Sep 29 09:13:03 UTC 2015 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
- Update to version 0.23.1
|
|
|
|
* Improve support for cffi 1.0+
|
|
|
|
(https://github.com/libgit2/pygit2/pull/529)
|
|
|
|
(https://github.com/libgit2/pygit2/pull/561)
|
|
|
|
* Fix Remote.push
|
|
|
|
(https://github.com/libgit2/pygit2/pull/557)
|
|
|
|
* New TreeEntry.type
|
|
|
|
(https://github.com/libgit2/pygit2/pull/560)
|
|
|
|
* New pygit2.GIT_DIFF_SHOW_BINARY
|
|
|
|
(https://github.com/libgit2/pygit2/pull/566)
|
|
|
|
|
2015-09-17 14:03:24 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Sep 17 11:15:59 UTC 2015 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
- Update to version 0.23.0
|
|
|
|
* Update to libgit2 v0.23
|
|
|
|
(https://github.com/libgit2/pygit2/pull/540)
|
|
|
|
* Now Repository.merge_base(...) returns None if no merge base is found
|
|
|
|
(https://github.com/libgit2/pygit2/pull/550)
|
|
|
|
* Documentation updates
|
|
|
|
(https://github.com/libgit2/pygit2/pull/547)
|
|
|
|
|
2015-02-03 17:09:25 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
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.
|
|
|
|
|
2014-09-02 20:22:34 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Sep 2 18:20:17 UTC 2014 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
- Update to version 0.20.2
|
|
|
|
+ Fix regression with Python 2, ``IndexEntry.path`` returns str
|
|
|
|
(bytes in Python 2 and unicode in Python 3)
|
|
|
|
+ Get back ``IndexEntry.oid`` for backwards compatibility
|
|
|
|
+ Config, iterate over the keys (instead of the key/value pairs)
|
|
|
|
`#395 <https://github.com/libgit2/pygit2/pull/395>`_
|
|
|
|
+ ``Diff.find_similar`` supports new threshold arguments
|
|
|
|
`#396 <https://github.com/libgit2/pygit2/pull/396>`_
|
|
|
|
+ Optimization, do not load the object when expanding an oid prefix
|
|
|
|
`#397 <https://github.com/libgit2/pygit2/pull/397>`_
|
|
|
|
- Changes from version 0.20.1
|
|
|
|
+ Install fix
|
|
|
|
`#382 <https://github.com/libgit2/pygit2/pull/382>`_
|
|
|
|
+ Documentation improved, including
|
|
|
|
`#383 <https://github.com/libgit2/pygit2/pull/383>`_
|
|
|
|
`#385 <https://github.com/libgit2/pygit2/pull/385>`_
|
|
|
|
`#388 <https://github.com/libgit2/pygit2/pull/388>`_
|
|
|
|
+ Documentation, use the read-the-docs theme
|
|
|
|
`#387 <https://github.com/libgit2/pygit2/pull/387>`_
|
|
|
|
+ Coding style improvements
|
|
|
|
`#392 <https://github.com/libgit2/pygit2/pull/392>`_
|
|
|
|
+ New ``Repository.state_cleanup()``
|
|
|
|
`#386 <https://github.com/libgit2/pygit2/pull/386>`_
|
|
|
|
+ New ``Index.conflicts``
|
|
|
|
`#345 <https://github.com/libgit2/pygit2/issues/345>`_
|
|
|
|
`#389 <https://github.com/libgit2/pygit2/pull/389>`_
|
|
|
|
+ New checkout option to define the target directory
|
|
|
|
`#390 <https://github.com/libgit2/pygit2/pull/390>`_
|
|
|
|
- Fix build
|
|
|
|
- Remove python_sitelib definition; pygit2 is arch dependant
|
2014-09-02 20:47:26 +02:00
|
|
|
- Add python-cffi and python-unittest2 requirements; new
|
|
|
|
dependencies
|
|
|
|
- Disable tests; network is now needed for launching them
|
2014-09-02 20:22:34 +02:00
|
|
|
|
2013-12-10 03:38:39 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Dec 9 13:31:12 UTC 2013 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
- Update to version 0.20.0
|
|
|
|
+ Upstream provides no changelog, but you can check
|
|
|
|
https://github.com/libgit2/pygit2/compare/v0.19.0...v0.20.0
|
|
|
|
- Fix build on openSUSE >= 12.3 and SLE11SP3
|
|
|
|
- Remove obsolete conditionnal macros
|
|
|
|
|
2013-08-18 15:52:59 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Aug 18 13:24:03 UTC 2013 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
- Update to 0.19.0
|
|
|
|
+ Upstream provides no changelog, but you can check
|
|
|
|
https://github.com/libgit2/pygit2/compare/v0.17.3...v0.19.0
|
|
|
|
- Keep 0.17.3 for compatibility with openSUSE 12.2
|
|
|
|
|
2012-12-27 21:15:39 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Dec 27 10:03:25 UTC 2012 - cfarrell@suse.com
|
|
|
|
|
|
|
|
- license update: GPL-2.0
|
|
|
|
See COPYING (and the majority of the source code files). Not sure why
|
|
|
|
Apache-2.0 was chosen as license here - there is absolutely no indication
|
|
|
|
of Apache style licensing in the package
|
|
|
|
|
2012-12-18 11:57:33 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Dec 18 10:48:23 UTC 2012 - saschpe@suse.de
|
|
|
|
|
|
|
|
- Update to version 0.17.3:
|
|
|
|
+ Upstream provides no changelog, but you can check
|
|
|
|
https://github.com/libgit2/pygit2/compare/v0.17.2...v0.17.3
|
|
|
|
- Changes from previous versions:
|
|
|
|
+ https://github.com/libgit2/pygit2/compare/v0.16.1...v0.17.2
|
|
|
|
- Enable testsuite again
|
|
|
|
- Package file COPYING
|
|
|
|
|
2012-04-24 11:14:51 +02:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Apr 24 08:49:31 UTC 2012 - saschpe@suse.de
|
|
|
|
|
|
|
|
- Update to version 0.16.1:
|
2012-12-18 11:57:33 +01:00
|
|
|
+ Upstream provides no changelog
|
2012-04-24 11:14:51 +02:00
|
|
|
|
2011-02-02 13:49:39 +01:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Wed Jan 26 17:26:21 UTC 2011 - saschpe@gmx.de
|
|
|
|
|
|
|
|
- Removed SUSE-specific --record-rpm for file lists
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 18 21:49:47 UTC 2011 - saschpe@gmx.de
|
|
|
|
|
|
|
|
- Install documentation (README.md and COPYING)
|
|
|
|
- Fix install section for other distros
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jan 18 20:48:40 UTC 2011 - saschpe@gmx.de
|
|
|
|
|
|
|
|
- Initial commit (0.1)
|
|
|
|
- Added patch include recent libgit2 changes
|
|
|
|
|