File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 - CI server: < http://teamcity.codebetter.com/project.html?projectId=project127&guest=1 >
99 - @libgit2sharp : < http://twitter.com/libgit2sharp >
1010
11+ ## v0.12.0 - ([ diff] ( https://github.com/libgit2/libgit2sharp/compare/v0.11.0...v0.12.0 ) )
12+
13+ ### Additions
14+
15+ - Introduce repo.Info.IsShallow
16+ - Teach repo.Reset to append to the Reflog
17+ - Introduce repo.ObjectDatabase.CreateTag()
18+ - Make repo.Diff.Compare() able to define the expected number of context and interhunk lines (#423 )
19+
20+ ### Changes
21+
22+ - Obsolete TreeEntryTargetType.Tag
23+ - Update libgit2 binaries to libgit2/libgit2@9d9fff3
24+
25+ ### Fixes
26+
27+ - Change probing mechanism to rely on specifically named versions of libgit2 binaries (#241 )
28+ - Ensure that two versions of LibGit2Sharp can run side by side (#241 )
29+
1130## v0.11.0 - ([ diff] ( https://github.com/libgit2/libgit2sharp/compare/v0.10.0...v0.11.0 ) )
1231
1332### Additions
Original file line number Diff line number Diff line change 4242// by using the '*' as shown below:
4343// [assembly: AssemblyVersion("1.0.*")]
4444
45- [ assembly: AssemblyVersion ( "0.11 .0" ) ]
46- [ assembly: AssemblyFileVersion ( "0.11 .0" ) ]
45+ [ assembly: AssemblyVersion ( "0.12 .0" ) ]
46+ [ assembly: AssemblyFileVersion ( "0.12 .0" ) ]
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ SET BASEDIR=%~dp0
33SET SRCDIR = %BASEDIR% ..\LibGit2Sharp\
44SET CommitSha = %~1
55
6+ IF " %CommitSha% " == " " (
7+ ECHO " Please provide the Libgit2Sharp commit Sha this package is being built from."
8+ EXIT /B 1
9+ )
10+
611REM the nuspec file needs to be next to the csproj, so copy it there during the pack operation
712COPY " %BASEDIR% LibGit2Sharp.nuspec" " %SRCDIR% "
813
You can’t perform that action at this time.
0 commit comments