aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS63
-rw-r--r--configure.ac2
-rw-r--r--tests/describe-instances.at1
3 files changed, 63 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index cea706a..d71f794 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,70 @@
-Eclat NEWS -- history of user-visible changes. 2015-02-26
+Eclat NEWS -- history of user-visible changes. 2015-11-19
Copyright (C) 2012-2015 Sergey Poznyakoff
See the end of file for copying conditions.
Please send Eclat bug reports to <bug-eclat@gnu.org.ua>
+
+Version 1.1.90 (Git)
+
+* VPC Support
+
+The following new commands provide full support for manipulating
+the EC2 VPC objects:
+
+ lsvpc describe-vpcs
+ lsvpcattr describe-vpc-attribute
+ mkvpc create-vpc
+ setvpcattr modify-vpc-attribute
+ rmvpc delete-vpc
+
+* Route table support
+
+The following new commands provide full support for manipulating
+the EC2 Route Table objects:
+
+ assocrtab AssociateRouteTable
+ mkrtab CreateRouteTable
+ rmrtab DeleteRouteTable
+ lsrtab DescribeRouteTables
+ disasrtab DisassociateRouteTable
+
+* Route support
+
+The route subcommand allows you to add, delete and modify routes in
+route tables.
+
+** Create route:
+
+ eclat route rtb-12345678 add CIDR gw ID
+
+** Delete route:
+
+ eclat route rtb-12345678 del CIDR
+
+** ReplaceRoute
+
+ eclat route rtb-12345678 repl CIDR gw ID
+
+* Subnet support
+
+The following new commands provide full support for manipulating
+the EC2 Subnet objects:
+
+ mksubnet create-subnet
+ rmsubnet delete-subnet
+ lssubnet describe-subnets
+ setsubnetattr modify-subnet-attribute
+
+* Internet Gateway support
+
+The following new commands provide full support for manipulating
+the EC2 Internet Gateway objects:
+ lsigw describe-internet-gateways
+ mkigw create-internet-gateway
+ rmigw delete-internet-gateway
+ atigw attach-internet-gateway
+ deigw detach-internet-gateway
Version 1.1, 2015-02-26
diff --git a/configure.ac b/configure.ac
index cfe0d2c..a2e0cfb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
# along with Eclat. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
-AC_INIT([eclat], 1.1, [bug-eclat@gnu.org.ua],,
+AC_INIT([eclat], 1.1.90, [bug-eclat@gnu.org.ua],,
[http://www.gnu.org.ua/software/eclat])
AC_CONFIG_SRCDIR([src/eclat.h])
AC_CONFIG_AUX_DIR([build-aux])
diff --git a/tests/describe-instances.at b/tests/describe-instances.at
index a03a589..62dc88d 100644
--- a/tests/describe-instances.at
+++ b/tests/describe-instances.at
@@ -207,7 +207,6 @@ ECLAT_TEST_FORMAT([DescribeInstances],
],
[Reservation ID: r-0ece705a
Owner ID: 053230519467
-Groups:
Instance: i-7a00642e
Image ID: ami-1cd4924e

Return to:

Send suggestions and report system problems to the System administrator.