Skip to content

Commit

Permalink
Preparations for release 1.3.0 (#146)
Browse files Browse the repository at this point in the history
* Preparations for release 1.3.0

* Dropping support for 3.6
  • Loading branch information
jesper-raemaekers authored Oct 8, 2023
1 parent 44e9c6f commit 2528f7c
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitchangelog.rc
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ tag_filter_regexp = r'^V[0-9]+\.[0-9]+(\.[0-9]+)?(_[0-9]+.[0-9]+)?'
##
## This label will be used as the changelog Title of the last set of changes
## between last valid tag and HEAD if any.
unreleased_version_label = "V1.2.1"
unreleased_version_label = "V1.3.0"


## ``output_engine`` is a callable
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ The API does not allow access to the project administration.

The package uses; requests, urllib3 and zeep.

It is tested for Python version 3.6 through 3.10.
It is tested for Python version 3.7 through 3.12.
Python 3.6 support has been dropped in 1.3.0.

# Known issues or missing features
- No way of knowing the test run possible statuses.
Expand Down
41 changes: 40 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,47 @@ Changelog
=========


V1.2.1
V1.3.0
------
- PDF functionality optional #124 (#144) [Jesper Raemaekers]
- Catch exceptions on deleted workitems when getting the document
content #137 (#143) [Jesper Raemaekers]
- Add check for removed workitems #138 (#142) [Jesper Raemaekers]
- Polarion_client.rst: skip_cert_verification is verify_certificate
(#132) [Florian Straub]
- Update multiple parts of wi. (#129) [therealevahill]

* refactor: Rename _skip_save attribute to _post_pone.

This indicates better what is happening.

* feat: Implement contextmanager for Workitem.

* docs: Add tiny example how to use contextmanager with Workitem.
- Feat: Implement contextmanager for Record. (#128) [therealevahill]

* feat: Implement contextmanager for Record.

Within the context manager it is possible to update multiple test steps
and only save it once at the end.

* doc: Add example for context manager use with record.
- Add method to get linked items #124 (#127) [Jesper Raemaekers]
- Allow test step 0 to be removed. #123 (#126) [Jesper Raemaekers]
- Add document exporting functionality (#121) [fieschkon]
- Update comments.py (#116) [fieschkon]

Allow user to select html or plain text for comments.
- Added assert index is integer (#109) [Vinay Jacob-John, vjacobjo]

* Added assert index is integer for updateTestStep and added unit test

---------


V1.2.1 (2023-03-16)
-------------------
- Preparations for release 1.2.1. [jesper.raemaekers]
- Update test steps with update function. Improved error message. #101.
[jesper.raemaekers]
- Added an example for retry mechanism from #104. [jesper.raemaekers]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests~=2.25.1
urllib3~=1.26.6
zeep~=4.0.0
texttable~=1.6.4
requests~=2.31.0
urllib3~=2.0.6
zeep~=4.2.1
texttable~=1.7.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
# replace with your username:
name = polarion
version = 1.2.1
version = 1.3.0
author = Jesper Raemaekers
author_email = [email protected]
description = Polarion client for Python
Expand All @@ -19,4 +19,4 @@ classifiers =

[options]
packages = find:
python_requires = >=3.6
python_requires = >=3.7
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="polarion",
version="1.2.1",
version="1.3.0",
author="Jesper Raemaekers",
author_email="[email protected]",
description="Polarion client for Python",
Expand All @@ -24,5 +24,5 @@
],
install_requires=["zeep", "lxml", "texttable"],
packages=setuptools.find_packages(),
python_requires='>=3.6',
python_requires='>=3.7',
)

0 comments on commit 2528f7c

Please sign in to comment.