8000 Release LibGit2Sharp v0.9.0 · dotjosh/libgit2sharp@79ee568 · GitHub
[go: up one dir, main page]

Skip to content

Commit 79ee568

Browse files
committed
Release LibGit2Sharp v0.9.0
1 parent f8ee885 commit 79ee568

File tree

4 files changed

+38
-49
lines changed

4 files changed

+38
-49
lines changed

BACKLOG.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,34 @@
88
- CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
99
- @libgit2sharp: <http://twitter.com/libgit2sharp>
1010

11+
## v0.9
12+
13+
### Additions
14+
15+
- Support local tracking branches (#113)
16+
- Add an Ignored collection to the RepositoryStatus type (#120)
17+
- Expose the relative path of TreeEntries (#122)
18+
- Make Repository able to work against specified index and workdir (#132)
19+
- Direct creation or Blobs, Trees and Commits without the workdir nor index involvement (#135)
20+
- New Diff namespace: supports tree-to-tree, tree-to-index and blob-to-blob comparisons (#136)
21+
- Add Commits.FindCommonAncestor() (#149)
22+
23+
### Changes
24+
25+
- Deprecate repo.Branches.Checkout() in favor of repo.Checkout()
26+
- Deprecate Tree.Files in favor of Tree.Blobs
27+
- Update libgit2 binaries to libgit2/libgit2@7a361e9
28+
29+
### Fixes
30+
31+
- Embed both x86 and amd64 compiled versions of libgit2 binaries (#55, #70)
32+
- Honor symbolically linked global .gitconfig (#84)
33+
- Ease the creation of a remote (#114)
34+
- Prevent memory issues when revwalking a large repository (#115)
35+
- Cleanup commit and tag messages (#117)
36+
- Make RetrieveStatus() return correct results (#123)
37+
- Allow staging on a network shared repository (#125)
38+
1139
## v0.8
1240

1341
### Additions

LibGit2Sharp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
// by using the '*' as shown below:
4343
// [assembly: AssemblyVersion("1.0.*")]
4444

45-
[assembly: AssemblyVersion("0.8.0")]
46-
[assembly: AssemblyFileVersion("0.8.0")]
45+
[assembly: AssemblyVersion("0.9.0")]
46+
[assembly: AssemblyFileVersion("0.9.0")]

README.md

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
# LibGit2Sharp
22

3-
LibGit2Sharp is an thin .Net layer (well.. we _try_ to keep it as thin as possible :-) ) wrapping the [libgit2](http://libgit2.github.com/) linkable C Git library.
4-
5-
It provides a very opiniated API which should be very easy to use and discover.
3+
**LibGit2Sharp brings all the might and speed of [libgit2](http://libgit2.github.com/), a native Git implementation, to the managed world of .Net and Mono.**
64

75
## Online resources
86

97
- [NuGet package](http://nuget.org/List/Packages/LibGit2Sharp)
108
- [Source code](https://github.com/libgit2/libgit2sharp/)
11-
- [Issue tracker](https://github.com/libgit2/libgit2sharp/issues)
12-
- [@libgit2sharp](http://twitter.com/libgit2sharp)
9+
- [CI server](http://teamcity.codebetter.com/project.html?projectId=project127&guest=1)
10+
11+
## Troubleshooting and support
12+
13+
- Usage or programming related question? Post it on [StackOverflow](http://stackoverflow.com/questions/tagged/libgit2sharp) using the tag *libgit2sharp*
14+
- Found a bug or missing a feature? Feed the [issue tracker](https://github.com/libgit2/libgit2sharp/issues)
15+
- Announcements and related miscellanea through Twitter ([@libgit2sharp](http://twitter.com/libgit2sharp))
1316

1417
## Quick contributing guide
1518

1619
- Fork and clone locally
17-
- Configure your repo to convert line endings on commit so they are always LF in the repo:
18-
- On Windows:
19-
```
20-
$ git config --global core.autocrlf true
21-
```
22-
- On Linux:
23-
```
24-
$ git config --global core.autocrlf input
25-
```
2620
- Create a topic specific branch. Add some nice feature. Do not forget the tests ;-)
2721
- Send a Pull Request to spread the fun!
2822

0 commit comments

Comments
 (0)
0