summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-05-02 10:35:46 +0200
committerPatrick Steinhardt <ps@pks.im>2019-05-20 14:29:42 +0200
commiteddd8fd1eb9c961928dcbb2fe3659c78af1cb25b (patch)
treefb4068bcac11a7b90e9ddee84f682508f4c9e3fe
parent887e004ebf3fb8640b612292bff08c1ada06a6c6 (diff)
downloadlibgit2-eddd8fd1eb9c961928dcbb2fe3659c78af1cb25b.tar.gz
Release v0.28.2
-rw-r--r--docs/changelog.md24
-rw-r--r--include/git2/version.h4
2 files changed, 26 insertions, 2 deletions
diff --git a/docs/changelog.md b/docs/changelog.md
index 7d1dac62a..d6ad2a9ce 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,3 +1,27 @@
+v0.28.2
+-------
+
+This is a bugfix release with the following changes:
+
+* Fix include directory ordering when using bundled dependencies.
+
+* Fix infinite loop when searching for a non-existing repository with
+ Windows-style paths including drive prefixes.
+
+* Fix paths with a trailing "/" not always being treated as
+ directories when computing ignores.
+
+* Fix false negatives when computing ignores where ignore rules
+ that are a prefix to a negative ignore rule exist.
+
+* Fix patches with CRLF line endings not being parsed correctly.
+
+* Fix segfault when parsing patches with file addition (deletion)
+ where the added (deleted) file name contains a space.
+
+* Fix assertion failure when trying to write to a non-existent
+ locked configuration file.
+
v0.28.1
-------
diff --git a/include/git2/version.h b/include/git2/version.h
index 7b7122000..0cd888ebb 100644
--- a/include/git2/version.h
+++ b/include/git2/version.h
@@ -7,10 +7,10 @@
#ifndef INCLUDE_git_version_h__
#define INCLUDE_git_version_h__
-#define LIBGIT2_VERSION "0.28.1"
+#define LIBGIT2_VERSION "0.28.2"
#define LIBGIT2_VER_MAJOR 0
#define LIBGIT2_VER_MINOR 28
-#define LIBGIT2_VER_REVISION 1
+#define LIBGIT2_VER_REVISION 2
#define LIBGIT2_VER_PATCH 0
#define LIBGIT2_SOVERSION 28