+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
+-------------------------------------------------------------------
+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
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