File tree 3 files changed +26
-2
lines changed 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 8
8
- CI server: < http://teamcity.codebetter.com/project.html?projectId=project127&guest=1 >
9
9
- @libgit2sharp : < http://twitter.com/libgit2sharp >
10
10
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
+
11
30
## v0.11.0 - ([ diff] ( https://github.com/libgit2/libgit2sharp/compare/v0.10.0...v0.11.0 ) )
12
31
13
32
### Additions
Original file line number Diff line number Diff line change 42
42
// by using the '*' as shown below:
43
43
// [assembly: AssemblyVersion("1.0.*")]
44
44
45
8000
- [ 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
3
3
SET SRCDIR = %BASEDIR% ..\LibGit2Sharp\
4
4
SET CommitSha = %~1
5
5
6
+ IF " %CommitSha% " == " " (
7
+ ECHO " Please provide the Libgit2Sharp commit Sha this package is being built from."
8
+ EXIT /B 1
9
+ )
10
+
6
11
REM the nuspec file needs to be next to the csproj, so copy it there during the pack operation
7
12
COPY " %BASEDIR% LibGit2Sharp.nuspec" " %SRCDIR% "
8
13
2A65
You can’t perform that action at this time.
0 commit comments