v6.1.0 (2020-03-03)
- Add support for progress messages by adding the
(fetch|peek)_changes_with_options(git2::FetchOptions)
variants.
v6.0.0 (2020-03-03)
v5.1.0 (2020-03-01)
- add
peek_changes()
method, which is like fetch_changes()
, but doesn't remember which changes it already saw. Use indx.last_seen_reference().set_target(oid)
to get a similar effect as if fetch_changes()
had been called.
v5.0.2 (2020-02-02)
- speed up diff parsing - skip conversion to utf8
v5.0.1 (2020-02-02)
- expose the 'git2' crate - useful for error handling
v5.0.0 (2020-02-01)
- update to libgit 0.11
- provide all information known about the crates, similar to the
crates-index
crate
v4.0.2 (2019-07-22)
v4.0.0 (2018-03-17)
- switch from rustc-serialize to serde
Breaking Changes
CrateVersion::from_crates_diff_json(...)
was removed in favor of CrateVersion::from_str(...)
which is powered by serde
.
v3.0.0 (2016-12-30)
- use git2 v0.6 instead of v0.4 to support openssl-sys 0.9.
v2.0.1 (2016-12-27)
Add a tutorial to the documentation.
v2.0.0 (2016-12-26)
Bug Fixes
- cargo: use git2 version for compat with docs.rs (0ceebed3)
v1.0.1 (2016-12-26)
Bug Fixes
- makefile: make quick tests quick again (9aa756ae)
Features
- display: implementation for changetype (8ed9a81f)