Bump version to 7.0

This commit is contained in:
Michel Machado 2017-12-21 14:12:31 -05:00
parent 865c44f21c
commit b8864dac2d
7 changed files with 17 additions and 9 deletions

View File

@ -63,7 +63,7 @@ The files of the stable version of F3 are
`here <https://github.com/AltraMayor/f3/releases>`__. The
following command uncompresses the files::
$ unzip f3-6.0.zip
$ unzip f3-7.0.zip
Compile stable software on Linux or FreeBSD

View File

@ -1,3 +1,8 @@
Version 7.0 - Dec 21, 2017
* stable version of f3probe, f3fix, and f3brew (Linux only)
* f3write: improved write speed and dealing with write failures
Version 6.0 - Dec 24, 2015
* f3probe: new algorithm.

View File

@ -58,9 +58,9 @@ author = 'Michel Machado'
# built documents.
#
# The short X.Y version.
version = '6.0'
version = '7.0'
# The full version, including alpha/beta/rc tags.
release = '6.0'
release = '7.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -136,7 +136,7 @@ html_theme_options = { 'show_related': True }
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = 'f3 v6.0'
# html_title = 'f3 vX.0'
# A shorter title for the navigation bar. Default is the same as html_title.
#

View File

@ -55,3 +55,6 @@ Linux only. Linux users may want to check out Vasiliy Kaygorodov's
or Ahmed Essam's
`page <http://ahmedspace.com/linux-how-to-fix-a-flash-memory-corrupting-files/>`__
for help.
Starting at version 7.0, ``f3probe``, ``f3fix``, and ``f3brew`` are stable.
They are for Linux only.

View File

@ -598,7 +598,7 @@ in the example below (please use the correct device!):
$ sudo ./f3probe --destructive --time-ops /dev/sdb
[sudo] password for michel:
F3 probe 6.0
F3 probe 7.0
Copyright (C) 2010 Digirati Internet LTDA.
This is free software; see the source for copying conditions.
@ -673,7 +673,7 @@ outputs:
$ sudo ./f3probe --time-ops /dev/sdc
[sudo] password for michel:
F3 probe 6.0
F3 probe 7.0
Copyright (C) 2010 Digirati Internet LTDA.
This is free software; see the source for copying conditions.
@ -733,7 +733,7 @@ The execution of ``f3fix`` on my fake drive went as follows:
::
$ sudo ./f3fix --last-sec=16477878 /dev/sdb
F3 fix 6.0
F3 fix 7.0
Copyright (C) 2010 Digirati Internet LTDA.
This is free software; see the source for copying conditions.

View File

@ -1,5 +1,5 @@
.\"Text automatically generated by txt2man
.TH F3 "1" "December 2015" "F3 6.0" "test real flash memory capacity"
.TH F3 "1" "December 2017" "F3 7.0" "test real flash memory capacity"
.SH NAME
\fBf3write, f3read \fP- test real flash memory capacity
.SH SYNOPSIS

View File

@ -1,6 +1,6 @@
#ifndef HEADER_VERSION_H
#define HEADER_VERSION_H
#define F3_STR_VERSION "6.0"
#define F3_STR_VERSION "7.0"
#endif /* HEADER_VERSION_H */