Skip to content

Commit

Permalink
bump version number for ABI change
Browse files Browse the repository at this point in the history
  • Loading branch information
peadar committed Jul 13, 2024
1 parent e9b11bf commit 5681495
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.7)
set(PSTACK_SOVERSION 2.7)
set(PSTACK_VERSION 2.7.2)
set(PSTACK_SOVERSION 2.8)
set(PSTACK_VERSION 2.8.1)
project(pstack LANGUAGES C CXX VERSION "${PSTACK_VERSION}" )

include (GNUInstallDirs)
Expand Down
3 changes: 2 additions & 1 deletion libpstack/proc.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ extern "C" {
#include <functional>
#include <optional>
#include <string_view>
#include <sys/stat.h> // for ino_t
#include <ucontext.h> // for gregset_t

#include "libpstack/ps_callback.h"
Expand Down Expand Up @@ -184,7 +185,7 @@ struct PrintableFrame;
struct DevNode {
int major = -1;
int minor = -1;
unsigned long inode = -1;
ino_t inode = -1;
std::string path;
bool operator == (const DevNode &rhs) const {
return major == rhs.major && minor == rhs.minor && inode == rhs.inode;
Expand Down

0 comments on commit 5681495

Please sign in to comment.