8000 Release LibGit2Sharp v0.12.0 · SkightTeam/libgit2sharp@f2e2fac · GitHub
[go: up one dir, main page]

Skip to content

Commit f2e2fac

Browse files
committed
Release LibGit2Sharp v0.12.0
1 parent b2e4367 commit f2e2fac

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@
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

LibGit2Sharp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
8000
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.11.0")]
46-
[assembly: AssemblyFileVersion("0.11.0")]
45+
[assembly: AssemblyVersion("0.12.0")]
46+
[assembly: AssemblyFileVersion("0.12.0")]

nuget.package/build.nuget.package.cmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ SET BASEDIR=%~dp0
33
SET SRCDIR=%BASEDIR%..\LibGit2Sharp\
44
SET 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+
611
REM the nuspec file needs to be next to the csproj, so copy it there during the pack operation
712
COPY "%BASEDIR%LibGit2Sharp.nuspec" "%SRCDIR%"
813

0 commit comments

Comments
 (0)
2A65
0