Skip to content

Commit 34ce130

Browse files
committed
Prepare v232
1 parent 3758d88 commit 34ce130

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
Python wrappers for libsystemd API
22

3+
CHANGES WITH 232:
4+
5+
* Wrappers for sd_journal_enumerate_unique, has_runtime_files,
6+
has_peristent_files.
7+
8+
* sd_journal_open_directory_fd, sd_journal_open_files_fd can
9+
be used by passing file descriptors to the initializer as
10+
the path or files arguments.
11+
12+
SD_JOURNAL_OS_ROOT flag is supported, and various flags may
13+
be passed to the constructor in combination with path or
14+
files arguments. All flags arguments are now passed through
15+
to the underlying libsystemd library functions, so which
16+
combinations are supported depends on that library.
17+
systemd 232 contains various fixes in this area.
18+
19+
Contributions from: Benedit Morbach, Michael Biebl,
20+
Michael Herold, Mike Gilbert, Nir Soffer, Sebastian,
21+
Ville Skyttä, Zbigniew Jędrzejewski-Szmek
22+
323
CHANGES WITH 231:
424

525
* Various build fixes and cleanups: documentation can be

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def lib(*names, **kw):
4040
+ '\n'.join(results) + '\n')
4141
sys.exit(status)
4242

43-
version = '231'
43+
version = '232'
4444
defines = {'define_macros':[('PACKAGE_VERSION', '"{}"'.format(version))]}
4545

4646
_journal = Extension('systemd/_journal',

0 commit comments

Comments
 (0)