Skip to content

Commit

Permalink
Release v0.16.0
Browse files Browse the repository at this point in the history
Changes since v0.15.1:

- Update to libgit2 v0.16.0
- Improve support for references
- New method Index.read_tree
- Rename Index.create_tree to Index.write_tree
- Fix compilation error with MSVC (issue #53)
- Fix a few segfaults (including issue #55)
  • Loading branch information
jdavid committed Feb 6, 2012
1 parent 42006d7 commit 0fa8503
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
from distutils.core import setup, Extension, Command
SETUPTOOLS = False

import sys

# Replace with your libgit2 configuration.
include_dirs = ['/usr/local/include']
Expand Down Expand Up @@ -67,11 +66,18 @@ def run(self):
kwargs = {'cmdclass': {'test': TestCommand}}


classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control"]


setup(name='pygit2',
description='Python bindings for libgit2.',
keywords='git',
version='0.15.0',
version='0.16.0',
url='http://github.com/libgit2/pygit2',
classifiers=classifiers,
license='GPLv2',
maintainer='J. David Ibáñez',
maintainer_email='[email protected]',
Expand Down

0 comments on commit 0fa8503

Please sign in to comment.