]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- fixed querying default and active snapshot if compiled without rollback support 443/head
authorArvin Schnell <aschnell@suse.de>
Mon, 22 Oct 2018 07:56:47 +0000 (09:56 +0200)
committerArvin Schnell <aschnell@suse.de>
Mon, 22 Oct 2018 07:56:47 +0000 (09:56 +0200)
LIBVERSION
VERSION
dists/debian/changelog
package/snapper.changes
snapper/Btrfs.cc

index f77856a6f1af5be6984fa25aaa2e17616e1030ab..cc2fbe89b6c7c93e6110c9150371f340d24e4b18 100644 (file)
@@ -1 +1 @@
-4.3.1
+4.3.2
diff --git a/VERSION b/VERSION
index 39e898a4f952d339c155a7939d571a5fdd6c8cfc..7486fdbc50b3f93d9d04db440483984df5d1dcce 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.7.1
+0.7.2
index 8fd686691867713e440a95115939bb70b39a351f..1dd9c9f44d91b2ccec462b5b916d6394786ea611 100644 (file)
@@ -1,3 +1,9 @@
+snapper (0.7.2) stable; urgency=low
+
+  * Updated to version 0.7.2
+
+ -- Arvin Schnell <aschnell@suse.com>  Mon, 22 Oct 2018 09:57:01 +0200
+
 snapper (0.7.1) stable; urgency=low
 
   * Updated to version 0.7.1
index 46cd4112aa229f57af60bbc055b5435ddad20e47..bb25f365a8a30f02f6676b1c222dbcb665f15b88 100644 (file)
@@ -1,3 +1,10 @@
+-------------------------------------------------------------------
+Mon Oct 22 09:52:01 CEST 2018 - aschnell@suse.com
+
+- fixed querying default and active snapshot if compiled without
+  rollback support (gh#openSUSE/snapper#442)
+- version 0.7.2
+
 -------------------------------------------------------------------
 Tue Oct 16 14:00:56 CEST 2018 - aschnell@suse.com
 
index b3bafb4ac24182d71c0308cb4cf01d2a002df19d..153b8c69702cf73feff1426a8bea47ac216626a7 100644 (file)
@@ -1544,40 +1544,35 @@ namespace snapper
     bool
     Btrfs::isDefault(unsigned int num) const
     {
-       SN_THROW(UnsupportedException());
-       __builtin_unreachable();
+       return Filesystem::isDefault(num);
     }
 
 
     std::pair<bool, unsigned int>
     Btrfs::getDefault() const
     {
-       SN_THROW(UnsupportedException());
-       __builtin_unreachable();
+       return Filesystem::getDefault();
     }
 
 
     void
     Btrfs::setDefault(unsigned int num) const
     {
-       SN_THROW(UnsupportedException());
-       __builtin_unreachable();
+       Filesystem::setDefault(num);
     }
 
 
     std::pair<bool, unsigned int>
     Btrfs::getActive() const
     {
-       SN_THROW(UnsupportedException());
-       __builtin_unreachable();
+       return Filesystem::getActive();
     }
 
 
     bool
     Btrfs::isActive(unsigned int num) const
     {
-       SN_THROW(UnsupportedException());
-       __builtin_unreachable();
+       return Filesystem::isActive(num);
     }
 
 #endif