Release v0.28.2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
diff --git a/docs/changelog.md b/docs/changelog.md
index 7d1dac6..d6ad2a9 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 7b71220..0cd888e 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