Skip to content

Commit 1db8a29

Browse files
committed
added FlowState and TestFolderStatus as entities, fixed addCollectionItems, upped version to 1.4.1
1 parent 9afbf9f commit 1db8a29

File tree

15 files changed

+29
-21
lines changed

15 files changed

+29
-21
lines changed

README.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Obtain the requests_ package and install it according to that package's directio
4848
As of requests-2.0.0, there is support for HTTPS over HTTP proxy via the CONNECT request.
4949
Use of requests-2.x or better is recommended for use with pyral.
5050
The requests_ package can be found via the Python Package Index site (http://pypi/python.org/index).
51-
The most recent release of pyral (1.4.0) has been tested using requests 2.12.5.
51+
The most recent release of pyral (1.4.1) has been tested using requests 2.12.5.
5252

5353
Obtain and install the six_ module (available from PyPI at https://pypi.python.org/pypi/six)
5454

@@ -76,7 +76,7 @@ relevant packages.
7676
>> import requests
7777
>> import pyral
7878
>> pyral.__version__
79-
(1, 4, 0)
79+
(1, 4, 1)
8080

8181

8282

@@ -282,6 +282,10 @@ Prerequisites
282282

283283
Versions
284284
--------
285+
**1.4.1**
286+
Support for TestFolderStatus attribute in TestFolder.
287+
Fixed defect in addCollectionItems
288+
285289
**1.4.0**
286290
Support for PullRequest entity object (subclassed from Connection).
287291

README.short

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Requirements
2020
The pyral package requires the use of Kenneth Reitz's requests package using version 2.8.0 or better.
2121
As of requests version 2.0.0, there is support for HTTPS over HTTP proxy via the CONNECT request.
2222
The requests package can be found via the Python Package Index site (http://pypi/python.org/index).
23-
The most recent release of pyral (1.4.0) has been tested with requests 2.12.5.
23+
The most recent release of pyral (1.4.1) has been tested with requests 2.12.5.
2424
The six module is also required.
2525

2626

build_dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re
1515

1616
PACKAGE_NAME = "pyral"
17-
VERSION = "1.4.0"
17+
VERSION = "1.4.1"
1818

1919
AUX_FILES = ['MANIFEST.in',
2020
'PKG-INFO',

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.4.0'
51+
version = '1.4.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.4.0'
53+
release = '1.4.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

pyral/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = (1, 4, 0)
1+
__version__ = (1, 4, 1)
22
from .config import rallySettings, rallyWorkset
33
from .restapi import Rally, RallyRESTAPIError, RallyUrlBuilder
44
from .restapi import AgileCentral, AgileCentralRESTAPIError, AgileCentralUrlBuilder

pyral/cargotruck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from six.moves import queue
77
Queue = queue.Queue
88

9-
__version__ = (1, 4, 0)
9+
__version__ = (1, 4, 1)
1010

1111
#########################################################################################################
1212

pyral/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
###################################################################################################
88

9-
__version__ = (1, 4, 0)
9+
__version__ = (1, 4, 1)
1010

1111
import datetime
1212
import os

pyral/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
###################################################################################################
1010

11-
__version__ = (1, 4, 0)
11+
__version__ = (1, 4, 1)
1212

1313
import sys, os
1414
import platform

pyral/entity.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
###################################################################################################
1010

11-
__version__ = (1, 4, 0)
11+
__version__ = (1, 4, 1)
1212

1313
import sys
1414
import re
@@ -420,14 +420,16 @@ class BuildMetricDefinition (WorkspaceDomainObject): pass # query capable only
420420
class Change (WorkspaceDomainObject): pass
421421
class Changeset (WorkspaceDomainObject): pass
422422
class ConversationPost (WorkspaceDomainObject): pass # query capable only
423-
class Milestone (WorkspaceDomainObject): pass
423+
class FlowState (WorkspaceDomainObject): pass
424+
class Milestone (WorkspaceDomainObject): pass
424425
class Preference (WorkspaceDomainObject): pass
425426
class PreliminaryEstimate (WorkspaceDomainObject): pass
426427
class SCMRepository (WorkspaceDomainObject): pass
427428
class State (WorkspaceDomainObject): pass
428429
class TestCaseStep (WorkspaceDomainObject): pass
429430
class TestCaseResult (WorkspaceDomainObject): pass
430431
class TestFolder (WorkspaceDomainObject): pass
432+
class TestFolderStatus (WorkspaceDomainObject): pass
431433
class Tag (WorkspaceDomainObject): pass
432434
class TimeEntryItem (WorkspaceDomainObject): pass
433435
class TimeEntryValue (WorkspaceDomainObject): pass
@@ -617,6 +619,7 @@ def __setattr__(self, item, value):
617619
'TestCaseResult' : TestCaseResult,
618620
'TestSet' : TestSet,
619621
'TestFolder' : TestFolder,
622+
'TestFolderStatus' : TestFolderStatus,
620623
'TimeEntryItem' : TimeEntryItem,
621624
'TimeEntryValue' : TimeEntryValue,
622625
'Build' : Build,
@@ -627,6 +630,7 @@ def __setattr__(self, item, value):
627630
'DefectSuite' : DefectSuite,
628631
'Change' : Change,
629632
'Changeset' : Changeset,
633+
'FlowState' : FlowState,
630634
'PortfolioItem' : PortfolioItem,
631635
'PortfolioItem_Strategy' : PortfolioItem_Strategy,
632636
'PortfolioItem_Initiative': PortfolioItem_Initiative,

pyral/hydrate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
###################################################################################################
1111

12-
__version__ = (1, 4, 0)
12+
__version__ = (1, 4, 1)
1313

1414
import sys
1515
import imp

0 commit comments

Comments
 (0)