aboutsummaryrefslogtreecommitdiff
path: root/doc/source/changes.rst
AgeCommit message (Collapse)Author
2020-05-31Bump patch level3.1.3Sebastian Thiel
2020-05-05Bump patch level, this time with known signature3.1.2Sebastian Thiel
2020-04-11bump patch level3.1.1Sebastian Thiel
2020-02-24Fix links in v3.0.6 changelogHarmon
2020-02-24Add changelogs for v2.1.14 and v2.1.15Harmon
2020-02-24v3.1.0Harmon
2020-02-24v3.0.93.0.9Harmon
2020-02-20Replace invalid bytes when decoding TagObject streamHarmon
Fixes #943
2020-02-18Use UTF-8 encoding when getting information about a symbolic referenceHarmon
Fixes #774
2020-02-17Remove and replace references to nose with unittest in documentationHarmon
2020-02-17Improve changelog for v3.0.6 and v3.0.7Harmon
2020-02-17Added changelog for unreleased changesHarmon
2020-02-17Improve changelog for v3.0.8Harmon
2020-02-17bump version to 3.0.83.0.8Sebastian Thiel
2020-02-08v3.0.73.0.7Sebastian Thiel
2020-02-08preparr 3.0.63.0.6Sebastian Thiel
2019-11-14bump version3.0.5Sebastian Thiel
2019-10-22Update changelog; improve README to prevent release mistakes in future.3.0.4Sebastian Thiel
2019-10-02Prepare v3.0.33.0.3Sebastian Thiel
2019-08-22prepare next release3.0.2Sebastian Thiel
2019-08-15Bump version to 3.0.13.0.1Sebastian Thiel
2019-08-14Changelog informationSebastian Thiel
2019-08-12finalize chagnes.rst for 3.0 release3.0.0Sebastian Thiel
2019-08-11Version 3.0 - drop python 2 supportSebastian Thiel
2019-07-29Bring back python 2 support2.1.13Sebastian Thiel
2019-07-06Update changelog for next releaseSebastian Thiel
2018-07-15Bump version to 2.1.112.1.11Sebastian Thiel
2018-05-19Bump to 2.1.102.1.10Sebastian Thiel
2018-03-24Bump version to 2.1.92.1.9Sebastian Thiel
2018-03-18github -> GitHubHugo
2017-12-11Bump version to v2.1.82.1.8Sebastian Thiel
2017-07-01Update changelog and improve docs on skipped testSebastian Thiel
[skip ci]
2017-03-08chore(version): 2.1.32.1.3Sebastian Thiel
Just because I messed up the previous one and ... pypi allows to delete files for releases, but doesn't allow to replace them with a similarly named one. WTF? Since when is a name important anyway?
2017-03-08chore(version): v2.1.22.1.2Sebastian Thiel
2017-03-08Fix typoThomas Jackson
2016-12-08chore(version): 2.1.12.1.1Sebastian Thiel
2016-10-22chore(version-up): v2.1.02.1.0Sebastian Thiel
Vastly improved windows support and a few bugfixes.
2016-10-20Fix some typosSantiago Castro
2016-09-11fix(Head): checkout() handles detached headSebastian Thiel
It's not optimal, as we can now return one of two types which are only compatible in the most basic ways. However, it is better than before, I presume. Fixes #510
2016-09-11fix(repo): make it serializable with pickleSebastian Thiel
It's entirely untested if this repo still does the right thing, but I'd think it does. Fixes #504
2016-09-11fix(tag): resolve `commit` objects deeply.Sebastian Thiel
As TagObjects can point to other TagObjects, we need to keep going in order to resolve the final commit. Fixes #503
2016-08-03chore(version-up): v2.0.82.0.8Sebastian Thiel
2016-07-23fix(diff): use explicit change-type if possibleSebastian Thiel
That way, we do not have to figure the change type out by examining the diff object. It's implemented in a way that should yield more desireable results as we keep the change-type that git is providing us with. Fixes #493
2016-07-17chore(version-up): v2.0.72.0.7Sebastian Thiel
2016-06-20Merge branch 'master' into fix-non-ascii-chars-in-status-linesfix-non-ascii-chars-in-status-linesSebastian Thiel
2016-06-14Store raw path bytes in Diff instancesVincent Driessen
Previously, the following fields on Diff instances were assumed to be passed in as unicode strings: - `a_path` - `b_path` - `rename_from` - `rename_to` However, since Git natively records paths as bytes, these may potentially not have a valid unicode representation. This patch changes the Diff instance to instead take the following equivalent fields that should be raw bytes instead: - `a_rawpath` - `b_rawpath` - `raw_rename_from` - `raw_rename_to` NOTE ON BACKWARD COMPATIBILITY: The original `a_path`, `b_path`, etc. fields are still available as properties (rather than slots). These properties now dynamically decode the raw bytes into a unicode string (performing the potentially destructive operation of replacing invalid unicode chars by "�"'s). This means that all code using Diffs should remain backward compatible. The only exception is when people would manually construct Diff instances by calling the constructor directly, in which case they should now pass in bytes rather than unicode strings. See also the discussion on https://github.com/gitpython-developers/GitPython/pull/467
2016-06-14Fix for parsing non-ASCII chars in status linesVincent Driessen
2016-06-14doc(changes): inform about new APISebastian Thiel
Relates to #446
2016-06-01Fixed 'TypeError: decode() takes no keyword arguments' on Python 2.6Andreas Maier
2016-05-30Bump for new versionVincent Driessen