From 20ff9717bc5757d3528f7fc7216c4afb43f2bde3 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Wed, 10 Nov 2021 18:49:10 +0100 Subject: [PATCH] fix mis-spelled send option for embedded data fixes https://github.com/zrepl/zrepl/issues/522 --- config/config.go | 2 +- docs/changelog.rst | 5 +++++ docs/configuration/sendrecvoptions.rst | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 0ee7d95..384a21f 100644 --- a/config/config.go +++ b/config/config.go @@ -86,7 +86,7 @@ type SendOptions struct { BackupProperties bool `yaml:"backup_properties,optional,default=false"` LargeBlocks bool `yaml:"large_blocks,optional,default=false"` Compressed bool `yaml:"compressed,optional,default=false"` - EmbeddedData bool `yaml:"embbeded_data,optional,default=false"` + EmbeddedData bool `yaml:"embedded_data,optional,default=false"` Saved bool `yaml:"saved,optional,default=false"` BandwidthLimit *BandwidthLimit `yaml:"bandwidth_limit,optional,fromdefaults"` diff --git a/docs/changelog.rst b/docs/changelog.rst index c551e6d..7deae79 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -29,6 +29,11 @@ We use the following annotations for classifying changes: * |docs| Change to the documentation. * |maint| Maintenance changes. +0.5 +--- + +* |break_config| |bugfix| Rename mis-spelled :ref:`send option ` ``embbeded_data`` to ``embedded_data``. + 0.4.0 ----- diff --git a/docs/configuration/sendrecvoptions.rst b/docs/configuration/sendrecvoptions.rst index 6b70f6d..5917f13 100644 --- a/docs/configuration/sendrecvoptions.rst +++ b/docs/configuration/sendrecvoptions.rst @@ -54,7 +54,7 @@ See the `upstream man page