Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 7612806

Browse files
author
Eugene Kovalenko
authored
Bump new version 0.12.1 (#210)
It's a milestone after API change #187 and addition of the Linux kernel 6 and Fedora 37 support #204, #209.
1 parent 89554eb commit 7612806

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Elastio provides repositories for the following Linux distributions and architec
1212
| RHEL/CentOS/Alma Linux/Rocky Linux | 8-9 | + | + |
1313
| Amazon Linux | 2 | + | + |
1414
| Fedora | 31-34 | + | - |
15-
| | 35-36 | + | + |
15+
| | 35-37 | + | + |
1616
| Debian | 8-9 | + | - |
1717
| | 10-11 | + | + |
1818
| Ubuntu | 16.04-18.04 | + | - |
@@ -108,7 +108,7 @@ These packages will install and configure the kernel module to start during the
108108

109109
### Dependencies
110110

111-
Note that this build process, while it _should_ work with any distribution, has only been tested with the distributions below. The lowest supported kernel is 3.10.
111+
Note that this build process, while it _should_ work with any distribution, has only been tested with the distributions below. The lowest supported kernel is 3.10.0.
112112

113113
#### Debian/Ubuntu
114114
```

dist/elastio-snap.spec

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109

110110

111111
Name: elastio-snap
112-
Version: 0.12.0
112+
Version: 0.12.1
113113
Release: 1%{?dist}
114114
Summary: Kernel module and utilities for enabling low-level live backups
115115
Vendor: Elastio Software, Inc.
@@ -610,6 +610,13 @@ rm -rf %{buildroot}
610610

611611
%changelog
612612

613+
* Wed Jan 4 2023 Stanislav Barantsev <sbarantsev@elastio.com> - 0.12.1
614+
- Fixed module compilation on Linux 6.0.14 for complete Fedora 37 support
615+
- Implemented 6.0.X Linux kernel support
616+
617+
* Wed Dec 23 2022 Konstantin Germanov <kgermanov@axcient.com>
618+
- Added sytemd shutdown script for consistency of the rootfs in snapshots
619+
613620
* Wed Dec 21 2022 Eugene Kovalenko <ikovalenko@elastio.com> - 0.12.0
614621
- Simplified error handling, got rid of sd_memory_fail_code and sd_cow_fail_state snapshot struct members
615622
- Added arg to some IOCTLs and lib funcs to switch off IO errors on read of a snap device in the failed state (helps to avoid SIGBUS on mem-mapped snap device)

src/elastio-snap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "kernel-config.h"
1010
#include "elastio-snap.h"
1111

12-
//current lowest supported kernel = 3.10
12+
//current lowest supported kernel = 3.10.0
1313

1414
//basic information
1515
MODULE_LICENSE("GPL");

src/elastio-snap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <linux/ioctl.h>
1717
#include <linux/limits.h>
1818

19-
#define ELASTIO_SNAP_VERSION "0.12.0"
19+
#define ELASTIO_SNAP_VERSION "0.12.1"
2020
#define ELASTIO_IOCTL_MAGIC 'A' // 0x41
2121

2222
struct setup_params{

0 commit comments

Comments
 (0)