Bump version for release.
This commit is contained in:
parent
db7499db82
commit
4d1d8d7409
3 changed files with 6 additions and 3 deletions
6
NEWS
6
NEWS
|
@ -1,9 +1,11 @@
|
||||||
1.5.24.dev0
|
1.5.24
|
||||||
* #431: Add "working_directory" option to support source directories with relative paths.
|
* #431: Add "working_directory" option to support source directories with relative paths.
|
||||||
* #444: When loading a configuration file that is unreadable due to file permissions, warn instead
|
* #444: When loading a configuration file that is unreadable due to file permissions, warn instead
|
||||||
of erroring. This supports running borgmatic as a non-root user with configuration in ~/.config
|
of erroring. This supports running borgmatic as a non-root user with configuration in ~/.config
|
||||||
even if there is an unreadable global configuration file in /etc.
|
even if there is an unreadable global configuration file in /etc.
|
||||||
* #469: Add "repositories" context to "before_*" and "after_*" command action hooks.
|
* #469: Add "repositories" context to "before_*" and "after_*" command action hooks. See the
|
||||||
|
documentation for more information:
|
||||||
|
https://torsion.org/borgmatic/docs/how-to/add-preparation-and-cleanup-steps-to-backups/
|
||||||
* #486: Fix handling of "patterns_from" and "exclude_from" options to error instead of warning when
|
* #486: Fix handling of "patterns_from" and "exclude_from" options to error instead of warning when
|
||||||
referencing unreadable files and "create" action is run.
|
referencing unreadable files and "create" action is run.
|
||||||
* #507: Fix Borg usage error in the "compact" action when running "borgmatic --dry-run". Now, skip
|
* #507: Fix Borg usage error in the "compact" action when running "borgmatic --dry-run". Now, skip
|
||||||
|
|
|
@ -258,6 +258,7 @@ footer.elv-layout {
|
||||||
/* Header */
|
/* Header */
|
||||||
.elv-header {
|
.elv-header {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
.elv-header-default {
|
.elv-header-default {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
VERSION = '1.5.24.dev0'
|
VERSION = '1.5.24'
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
Loading…
Reference in a new issue