Browse Source

Merge branch 'master' into refactor

# Conflicts:
#	baangt/TestDataGenerator/TestDataGenerator.py
bernhardbuhl 3 years ago
parent
commit
8e7faf9644
5 changed files with 24 additions and 4 deletions
  1. 1 1
      .bumpversion.cfg
  2. 20 0
      docs/changelog.rst
  3. 1 1
      docs/conf.py
  4. 1 1
      requirements.txt
  5. 1 1
      setup.py

+ 1 - 1
.bumpversion.cfg

@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 1.2.4
+current_version = 1.2.5
 commit = True
 tag = True
 

+ 20 - 0
docs/changelog.rst

@@ -1,6 +1,26 @@
 Change log
 ==========
 
+1.2.x
+^^^^^
+
+New features:
++++++++++++++
+* Completely new concept for file handling. Original Excel-Files are not overwritten. Including TestDataGenerator.
+* ``Usecount`` columns will show, how often qualitifed test data was selected in all test runs.
+* ``TestResult``: if this column is in a test data sheet, we'll write the test result of each test run (condensed) into this cell
+* Change Log: In all copied files there's a sheet ``Change Log`` which shows per each timestamp, which changes were made to the original sheet. Incredibly helpful feature!
+* Teststeps: New comparison operators ``CO``ntains and ``IP`` (Is Part of) to compare strings
+
+Refactoring:
+++++++++++++
+* Great speed improvements with large files (read and write, also in remote read)
+* Teststeps: ``GoToURL`` parameter now also possible in ``Locator`` (makes more sense). ``Value`` still works fine.
+
+Bugfixing:
+++++++++++
+
+
 1.1.15
 ^^^^^^^
 

+ 1 - 1
docs/conf.py

@@ -24,7 +24,7 @@ copyright = '2020, Bernhard Buhl'
 author = 'Bernhard Buhl'
 
 # The full version, including alpha/beta/rc tags
-release = '1.2.4'
+release = '1.2.5'
 
 
 # -- General configuration ---------------------------------------------------

+ 1 - 1
requirements.txt

@@ -29,4 +29,4 @@ slack-webhook>=1.0.3
 psutil>=5.7.2
 atlassian-python-api>=1.17.3
 icopy2xls>=0.0.4
-xlsclone>=0.0.5
+xlsclone>=0.0.7

+ 1 - 1
setup.py

@@ -6,7 +6,7 @@ if __name__ == '__main__':
 
     setuptools.setup(
         name="baangt",
-        version="1.2.4",
+        version="1.2.5",
         author="Bernhard Buhl",
         author_email="info@baangt.org",
         description="Open source Test Automation Suite for MacOS, Windows, Linux",