Skip to content

Commit aa6ac36

Browse files
committed
v1.9.0 - paperwork
1 parent 0e023d4 commit aa6ac36

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.9.0] - 2026-02-13
9+
10+
### Added:
11+
12+
- **Linux**: Default permissions set to 0777.
13+
14+
815
## [1.8.0] - 2026-02-06
916

1017
### Added:

include/libsharedmemory/libsharedmemory.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

33
#define LIBSHAREDMEMORY_VERSION_MAJOR 1
4-
#define LIBSHAREDMEMORY_VERSION_MINOR 8
4+
#define LIBSHAREDMEMORY_VERSION_MINOR 9
55
#define LIBSHAREDMEMORY_VERSION_PATCH 0
66

77
#include <ostream>
@@ -493,7 +493,7 @@ inline Error Memory::createOrOpen(const bool create)
493493

494494
_fd = shm_open(_path.c_str(), flags, 0777);
495495
fchmod(_fd, 0777); //explicit
496-
496+
497497
if (_fd < 0)
498498
{
499499
if (create)

0 commit comments

Comments
 (0)