aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2018-03-19 13:33:35 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2018-03-19 13:33:35 +0200
commit63a903790265731c3abe0eee2db525c11347356b (patch)
tree6f269e49ab8d9dbeb51ff62d16c2f2255c3c5546
parent36c4750dc457f0e1dd74af628a0a4aaa1f940a47 (diff)
parent724073f51f35553bf7982789e5324c0e16311cb9 (diff)
downloadeclat-63a903790265731c3abe0eee2db525c11347356b.tar.gz
eclat-63a903790265731c3abe0eee2db525c11347356b.tar.bz2
Merge branch 'master' of ssh://git.gnu.org.ua/gitroot/eclat
-rw-r--r--NEWS9
-rw-r--r--README5
-rw-r--r--configure.ac2
3 files changed, 7 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index c7edebd..78bc75b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,13 +1,12 @@
-Eclat NEWS -- history of user-visible changes. 2018-03-15
-Copyright (C) 2012-2018 Sergey Poznyakoff
+Eclat NEWS -- history of user-visible changes. 2018-03-16
See the end of file for copying conditions.
Please send Eclat bug reports to <bug-eclat@gnu.org.ua>
-Version 1.1.91 (Git)
+Version 2.0, 2018-03-16
* Exponential backoff with jitter
If AWS responds with a RequestLimitExceeded code, eclat retries the
request using exponential backoff with jitter algorithm. The algorithm
is controlled by two values: max-retry-interval and total-retry-timeout.
@@ -17,13 +16,13 @@ RequestLimitExceeded error, it will calculate the timeout using the
following formula:
t = rand(0, min(M, 2 ** N)) + 1
where N is the attempt number, M is the value of max-retry-interval
parameter, 'rand(a,b)' selects the integer random number X such that
-0 <= X <= b, and '**' denotes power operator. The attempts to resend
+0 <= X <= b, and '**' denotes the power operator. The attempts to resend
the request will continue until either a response other than
RequestLimitExceeded is received (be it a response to the query or
another error response), or the total time spent in the retry loop
becomes equal to or greater than total-retry-timeout, whichever occurs
first.
@@ -191,13 +190,13 @@ Version 0.1, 2012-10-23
First alpha release.
=========================================================================
Copyright information:
-Copyright (C) 2012-2015 Sergey Poznyakoff
+Copyright (C) 2012-2018 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
copyright notice and this permission notice are preserved,
thus giving the recipient permission to redistribute in turn.
diff --git a/README b/README
index 9b2186d..d3499dd 100644
--- a/README
+++ b/README
@@ -1,21 +1,20 @@
Eclat README
-Copyright (C) 2012-2018 Sergey Poznyakoff
See the end of file for copying conditions.
* Introduction
Eclat stands for EC2 Command Line Administrator Tool. It allows you to
manage Amazon EC2 services from the command line, fast and easy. It does
not require resource-consuming libraries. It is written in plain C,
depends only on libraries which are always installed on any decent system,
and has low resource requirements.
* Actions
-So far about 27% of EC2 actions is implemented. The set of actions is
+So far about 42% of EC2 actions is implemented. The set of actions is
somewhat arbitrary and reflects my needs. See the file TODO for the
detailed list of actions and their status. I will be adding new
actions as the need arises and my time permits. Given that the Eclat
framework in now mature and well established, implementing a new
action is quite straightforward and simple. If you are interested in
a particular action, drop me a note and I'll try to implement it out
@@ -82,13 +81,13 @@ Once done, you can use TAB to complete a partially typed command name.
Send bug reports, propositions and action requests to
<bug-eclat@gnu.org.ua>.
* Copyright information:
-Copyright (C) 2012, 2013 Sergey Poznyakoff
+Copyright (C) 2012-2018 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
copyright notice and this permission notice are preserved,
thus giving the recipient permission to redistribute in turn.
diff --git a/configure.ac b/configure.ac
index 72aee3e..25e0a0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,13 +12,13 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Eclat. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
-AC_INIT([eclat], 1.1.91, [bug-eclat@gnu.org.ua],,
+AC_INIT([eclat], 2.0, [bug-eclat@gnu.org.ua],,
[http://www.gnu.org.ua/software/eclat])
AC_CONFIG_SRCDIR([src/eclat.h])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([1.11 gnits tar-ustar dist-xz std-options silent-rules])
dnl AC_CONFIG_LIBOBJ_DIR([src])

Return to:

Send suggestions and report system problems to the System administrator.