From 3aeb5bd0f6528d4904d05520052eebf493853f08 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Sat, 28 Dec 2024 08:28:35 +0000 Subject: [PATCH] meta: revert soname version update Changing our SONAME / ABI version update policy without an announcement is a breaking change. Provide time to announce a policy update. --- docs/changelog.md | 9 ++++----- include/git2/version.h | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index ce524b9e7..b0655f7d0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -33,11 +33,10 @@ This means that v2.0 will have API and ABI changes to support SHA256. so that the blame functionality can be benchmarked by our benchmark suite. -* **SONAME changed** - libgit2 will now properly update its SONAME version information when - ABI chnages occur. We hope that by correcting this oversight, users - and distribution vendors, will be able to integrate new versions of - libgit2 more easily. +* **More CLI commands** + libgit2 has added `blame` and `init` commands, which have allowed for + [further benchmarking](https://benchmarks.libgit2.org/) and several API + improvements and git compatibility updates. ## Breaking changes diff --git a/include/git2/version.h b/include/git2/version.h index 8acffca9c..6a352e1a5 100644 --- a/include/git2/version.h +++ b/include/git2/version.h @@ -46,7 +46,7 @@ GIT_BEGIN_DECL * only be changed when the library has a breaking ABI change, and so * may not reflect the library's API version number. */ -#define LIBGIT2_SOVERSION "2.0" +#define LIBGIT2_SOVERSION "1.9" /** * An integer value representing the libgit2 version number. For example,