summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNagappan Alagappan <nagappan@gmail.com>2012-08-03 11:40:00 -0700
committerNagappan Alagappan <nagappan@gmail.com>2012-08-03 11:40:00 -0700
commit63104dd99e769672c47d4cb1fab367b77b94c5f3 (patch)
tree6581bf577c1d8b4ba9302a5f92ad3b487cec8aca
parent8714b1f6c32b187d2526b46381ef10efaacad5d2 (diff)
Updated LDTP version 3.0.0LDTP_3.0.0
-rw-r--r--Doxyfile2
-rw-r--r--NEWS6
-rwxr-xr-xscripts/ldtp2
-rw-r--r--setup.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/Doxyfile b/Doxyfile
index 71c4998..d33bc38 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -4,7 +4,7 @@
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = LDTP
-PROJECT_NUMBER = 2.3.1
+PROJECT_NUMBER = 3.0.0
OUTPUT_DIRECTORY = doc
CREATE_SUBDIRS = YES
OUTPUT_LANGUAGE = English
diff --git a/NEWS b/NEWS
index 612682f..f3eda5d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+LDTP 3.0.0 released - Friday Aug 3 2012
+ Simplified the implementation verifyselect for combobox menuitem
+ Fix QT related accessibility issue
+ Java / C# / VB.NET / PowerShell / Ruby are now officially supported LDTP scripting languages other than Python
+ Firefox have check / uncheck as actions for check box
+ New APIs added (selectpanel, selectpanelname, selectpanelindex)
LDTP 2.3.1 released Download - Saturday Feb 25 2012
Added twisted gtk3reactor
Operate on window name using index, will be helpful with i18n, l10n testing
diff --git a/scripts/ldtp b/scripts/ldtp
index 6e7824a..91ad6ae 100755
--- a/scripts/ldtp
+++ b/scripts/ldtp
@@ -36,7 +36,7 @@ def parse_cmd_line_option():
(options, args) = parser.parse_args()
if options.version:
# Print version info and exit
- print 'ldtp-2.3.1'
+ print 'ldtp-3.0.0'
sys.exit(0)
if options.verbose:
# Set verbose flag
diff --git a/setup.py b/setup.py
index 161d16e..34e35d1 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ Headers in this file shall remain intact.
from distutils.core import setup
setup(name="ldtp",
- version="2.3.1",
+ version="3.0.0",
description="Linux Desktop Testing Project Version 2",
maintainer="Nagappan Alagappan",
maintainer_email="nagappan@gmail.com",