build-sys: prepare 201

This commit is contained in:
Lennart Poettering 2013-04-08 22:24:19 +02:00
parent 5989dbb233
commit d3a86981d1
3 changed files with 76 additions and 10 deletions

View File

@ -32,28 +32,28 @@ SUBDIRS = . po
.SECONDARY:
LIBUDEV_CURRENT=4
LIBUDEV_REVISION=1
LIBUDEV_REVISION=2
LIBUDEV_AGE=3
LIBGUDEV_CURRENT=1
LIBGUDEV_REVISION=3
LIBGUDEV_AGE=1
LIBSYSTEMD_LOGIN_CURRENT=4
LIBSYSTEMD_LOGIN_REVISION=2
LIBSYSTEMD_LOGIN_AGE=4
LIBSYSTEMD_LOGIN_CURRENT=5
LIBSYSTEMD_LOGIN_REVISION=0
LIBSYSTEMD_LOGIN_AGE=5
LIBSYSTEMD_DAEMON_CURRENT=0
LIBSYSTEMD_DAEMON_REVISION=8
LIBSYSTEMD_DAEMON_REVISION=9
LIBSYSTEMD_DAEMON_AGE=0
LIBSYSTEMD_ID128_CURRENT=0
LIBSYSTEMD_ID128_REVISION=19
LIBSYSTEMD_ID128_REVISION=20
LIBSYSTEMD_ID128_AGE=0
LIBSYSTEMD_JOURNAL_CURRENT=8
LIBSYSTEMD_JOURNAL_REVISION=2
LIBSYSTEMD_JOURNAL_AGE=8
LIBSYSTEMD_JOURNAL_CURRENT=9
LIBSYSTEMD_JOURNAL_REVISION=0
LIBSYSTEMD_JOURNAL_AGE=9
# Dirs of external packages
dbuspolicydir=@dbuspolicydir@

66
NEWS
View File

@ -1,5 +1,71 @@
systemd System and Service Manager
CHANGES WITH 201:
* journalctl --update-catalog now understands a new --root=
option to operate on catalogs found in a different root
directory.
* During shutdown after systemd has terminated all running
services a final killing loop kills all remaining left-over
processes. We will now print the name of these processes
when we send SIGKILL to them, since this usually indicates a
problem.
* If /etc/crypttab refers to password files stored on
configured mount points automatic dependencies will now be
generated to ensure the specific mount is established first
before the key file is attempted to be read.
* 'systemctl status' will now show information about the
network sockets a socket unit is listening on.
* 'systemctl status' will also shown information about any
drop-in configuration file for units. (Drop-In configuration
files in this context are files such as
/etc/systemd/systemd/foobar.service.d/*.conf)
* systemd-cgtop now optionally shows summed up CPU times of
cgroups. Press '%' while running cgtop to switch between
percentage and absolute mode. This is useful to determine
which cgroups use up the most CPU time over the entire
runtime of the system. systemd-cgtop has also been updated
to be 'pipeable' for processing with further shell tools.
* 'hostnamectl set-hostname' will now allow setting of FQDN
hostnames.
* The formatting and parsing of time span values has been
changed. The parser now understands fractional expressions
such as "5.5h". The formatter will now output fractional
expressions for all time spans under 1min, i.e. "5.123456s"
rather than "5s 123ms 456us". For time spans under 1s
millisecond values are shown, for those under 1ms
microsecond values are shown. This should greatly improve
all time-related output of systemd.
* libsystemd-login and libsystemd-journal gained new
functions for querying the poll() events mask and poll()
timeout value for integration into arbitrary event
loops.
* localectl gained the ability to list available X11 keymaps
(models, layouts, variants, options).
* 'systemd-analyze dot' gained the ability to filter for
specific units via shell-style globs, to create smaller,
more useful graphs. I.e. it's now possible to create simple
graphs of all the dependencies between only target units, or
of all units that Avahi has dependencies with.
Contributions from: Cristian Rodríguez, Dr. Tilmann Bubeck,
Harald Hoyer, Holger Hans Peter Freyther, Kay Sievers, Kelly
Anderson, Koen Kooi, Lennart Poettering, Maksim Melnikau,
Marc-Antoine Perennou, Marius Vollmer, Martin Pitt, Michal
Schmidt, Oleksii Shevchuk, Ronny Chevalier, Simon McVittie,
Steven Hiscocks, Thomas Weißschuh, Umut Tezduyar, Václav
Pavlín, Zbigniew Jędrzejewski-Szmek, Łukasz Stelmach
CHANGES WITH 200:
* The boot-time readahead implementation for rotating media

View File

@ -20,7 +20,7 @@
AC_PREREQ([2.64])
AC_INIT([systemd],
[200],
[201],
[http://bugs.freedesktop.org/enter_bug.cgi?product=systemd],
[systemd],
[http://www.freedesktop.org/wiki/Software/systemd])