Skip to content

Commit b980b7b

Browse files
committed
Update to 1.9.1
1 parent 81a8b4f commit b980b7b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Details
44
-------
55

6-
Delphi / Free Pascal bindings for [libgit2](https://www.libgit2.org/) v1.9(.0).
6+
Delphi / Free Pascal bindings for [libgit2](https://www.libgit2.org/) v1.9(.1).
77

88
Since I could not find anything very up to date in the Delphi/Pascal world for recent libgit2 versions I decided to do something myself with assistance from [CHelper](https://wiki.freepascal.org/Chelper).
99

src/git2/remote.inc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,9 @@ function git_remote_name(remote: Pgit_remote): PAnsiChar; cdecl; external libgit
651651
(**
652652
* Get the remote's url
653653
*
654-
* return the modified URL. If `git_remote_set_instance_pushurl`
655-
* has been called for this remote, then that URL will be returned.
654+
* If url.*.insteadOf has been configured for this URL, it will return
655+
* the modified URL. This function does not consider if a push url has
656+
* been configured for this remote (use `git_remote_pushurl` if needed).
656657
*
657658
* @param remote the remote
658659
* @return a pointer to the url

src/git2/version.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const
1010
* The version string for libgit2. This string follows semantic
1111
* versioning (v2) guidelines.
1212
*)
13-
LIBGIT2_VERSION = '1.9.0';
13+
LIBGIT2_VERSION = '1.9.1';
1414

1515
(** The major version number for this version of libgit2. *)
1616
LIBGIT2_VERSION_MAJOR = 1;
@@ -19,7 +19,7 @@ const
1919
LIBGIT2_VERSION_MINOR = 9;
2020

2121
(** The revision ("teeny") version number for this version of libgit2. *)
22-
LIBGIT2_VERSION_REVISION = 0;
22+
LIBGIT2_VERSION_REVISION = 1;
2323

2424
(** The Windows DLL patch number for this version of libgit2. *)
2525
LIBGIT2_VERSION_PATCH = 0;

0 commit comments

Comments
 (0)