mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
Release v1.1.1
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 3.5.1)
|
||||
|
||||
project(libgit2 VERSION "1.1.0" LANGUAGES C)
|
||||
project(libgit2 VERSION "1.1.1" LANGUAGES C)
|
||||
|
||||
# Add find modules to the path
|
||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${libgit2_SOURCE_DIR}/cmake/")
|
||||
|
||||
@@ -1,3 +1,31 @@
|
||||
v1.1.1
|
||||
------
|
||||
|
||||
This is a bugfix release with the following changes:
|
||||
|
||||
* Fixes a bug where decompressing packfiles could fail in rare
|
||||
instances.
|
||||
|
||||
* Ensure worktree paths are validated in more cases.
|
||||
|
||||
* Builds without thread-safety (`THREADSAFE=OFF`) are supported again.
|
||||
|
||||
* Builds without mmap (`NO_MMAP`) are supported again.
|
||||
|
||||
* mbedTLS is supported in non-default locations.
|
||||
|
||||
* Malformed branch names or missing branches on remotes are ignored.
|
||||
|
||||
* Use compiler intrinsics to detect arithmetic overflows in more cases.
|
||||
|
||||
* The configuration cache functions properly on systems with strict
|
||||
alignment.
|
||||
|
||||
* A missing options initializer function (`git_blob_filter_options_init`)
|
||||
was added for `git_blob_filter_options`.
|
||||
|
||||
* Several documentation fixes.
|
||||
|
||||
v1.1
|
||||
----
|
||||
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
#ifndef INCLUDE_git_version_h__
|
||||
#define INCLUDE_git_version_h__
|
||||
|
||||
#define LIBGIT2_VERSION "1.1.0"
|
||||
#define LIBGIT2_VERSION "1.1.1"
|
||||
#define LIBGIT2_VER_MAJOR 1
|
||||
#define LIBGIT2_VER_MINOR 1
|
||||
#define LIBGIT2_VER_REVISION 0
|
||||
#define LIBGIT2_VER_REVISION 1
|
||||
#define LIBGIT2_VER_PATCH 0
|
||||
|
||||
#define LIBGIT2_SOVERSION "1.1"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "libgit2",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"repo": "https://github.com/libgit2/libgit2",
|
||||
"description": " A cross-platform, linkable library implementation of Git that you can use in your application.",
|
||||
"install": "mkdir build && cd build && cmake .. && cmake --build ."
|
||||
|
||||
Reference in New Issue
Block a user