Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2011-06-20 23:34:11 +0400
committernulltoken <emeric.fermas@gmail.com>2011-06-20 23:55:15 +0400
commit7218e1b6fa932c51028803aa1ff4359fcf44f44d (patch)
tree2f0c2b273d977e96e2ddfeb0aa78a0845f20ae11
parentaee32ee256722684b88d7e9fbdff4beb21215de8 (diff)
Update Changelog
-rw-r--r--BACKLOG.md (renamed from backlog.md)1
-rw-r--r--CHANGELOG.md93
2 files changed, 67 insertions, 27 deletions
diff --git a/backlog.md b/BACKLOG.md
index c92b111c..2e61b17e 100644
--- a/backlog.md
+++ b/BACKLOG.md
@@ -3,7 +3,6 @@
### LibGit2Sharp
- Build a LibGit2Sharp.Sample NuGet package
- - Publish source and PDBs at symbolsource.org (cf. http://blog.davidebbo.com/2011/04/easy-way-to-publish-nuget-packages-with.html and http://nuget.codeplex.com/discussions/257709)
- Maybe : Add to Epoch a DateTimeOffset extension method ToRelativeFormat() in order to show dates relative to the current time, e.g. "2 hours ago". (cf. https://github.com/git/git/blob/master/date.c#L89)
- Turn duplicated strings "refs/xxx" into properties of a generic Constants helper type
- Refactor the error handling (OutputResult -> Exceptions)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d50289f2..49d5df32 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,32 +1,73 @@
-# LibGit2Sharp releases
-
-## v0.3.0
-
- - [Add] Add msvcr100.dll dependency
- - [Add] Add basic Commit feature
- - [Add] Add Repository.Index.Unstage() functionality
- - [Add] Add branch renaming feature
- - [Fix] Fix index updating issue
- - [Fix] Fix branch creation issue
- - [Upd] Make Repository.Head return a Branch instead of a Reference
- - [Upd] Defer resolving of Repository.Info
- - [Upd] Update libgit2 binaries to a5aa5bd
- - [Upd] Enhance error reporting
-
- ## v0.2.0
-
- - [Fix] Fix Repository.Info.IsEmpty
- - [Fix] Fix default CommitCollection sorting behavior
- - [Fix] Fix creation of reference to prevent it from choking on corrupted ones
- - [Fix] Fix interop issue in a IIS hosted application
- - [Upd] Update CommitCollection API to query commits
- - [Upd] Update libgit2 binaries to 4191d52
+# LibGit2Sharp Changelog
+
+ - Source code: <https://github.com/libgit2/libgit2sharp>
+ - NuGet package: <http://nuget.org/List/Packages/LibGit2Sharp>
+
+## v0.4
+
+### Additions
+
+ - Add handling of abbreviated identifiers
+ - Add Repository.Discover() (#25)
+ - Add TreeEntry.Type
+
+### Changes
+
+ - Propagate libgit2 error messages upward
+ - Update libgit2 binaries to libgit2/libgit2@2a406ab
+
+### Fixes
+
+ - Improved Mono compatibility (#46 and #47)
+ - Dependency to msvcr100.dll is no longer required
+
+## v0.3
+
+### Additions
+
+ - Add basic Commit feature (#32)
+ - Add Repository.Index.Unstage()
+ - Add branch renaming feature
+ - Add symbolsource.org support (#37)
+
+### Changes
+
+ - Make Repository.Head return a Branch instead of a Reference
+ - Defer resolving of Repository.Info
+ - Update libgit2 binaries to libgit2/libgit2@a5aa5bd
+ - Improved Mono compatibility (#34)
+
+### Fixes
+
+ - Add required msvcr100.dll dependency (#43)
+ - Fix index updating issue
+ - Fix branch creation issue
+
+## v0.2.0
+
+### Changes
+
+ - Update CommitCollection API to query commits
+ - Update libgit2 binaries to libgit2/libgit2@4191d52
+
+### Fixes
+
+ - Fix Repository.Info.IsEmpty
+ - Fix default CommitCollection sorting behavior
+ - Fix creation of reference to prevent it from choking on corrupted ones
+ - Fix interop issue in a IIS hosted application
## v0.1.1
- - [Fix] Fix NuGet packaging
- - [Add] Update staging mechanism to authorize full paths to be used
+### Additions
+
+ - Update staging mechanism to authorize full paths to be used (#23)
+
+### Fixes
+
+ - Fix NuGet packaging
## v0.1.0
- - Initial release \ No newline at end of file
+ - Initial release
+