Skip to content
This repository was archived by the owner on Nov 21, 2019. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 99b7af8

Browse files
author
Jim Olsen
committed
2.2.1 release updates
1 parent b414585 commit 99b7af8

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

CHANGELOG.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
<!-- MarkdownTOC -->
22

3-
- [2.2.0](#220)
3+
- [2.2.1](#221)
44
- [bug fixes](#bug-fixes)
5+
- [2.2.0](#220)
6+
- [bug fixes](#bug-fixes-1)
57
- [enhancements](#enhancements)
68
- [2.1.9](#219)
79
- [2.1.8](#218)
810
- [enhancements](#enhancements-1)
911
- [2.1.7](#217)
1012
- [enhancements](#enhancements-2)
1113
- [doc updates](#doc-updates)
12-
- [bug fixes](#bug-fixes-1)
14+
- [bug fixes](#bug-fixes-2)
1315
- [work in progress](#work-in-progress)
1416
- [notes](#notes)
1517
- [2.1.6](#216)
1618
- [enhancements](#enhancements-3)
1719
- [2.1.5](#215)
18-
- [bug fixes](#bug-fixes-2)
20+
- [bug fixes](#bug-fixes-3)
1921
- [enhancements](#enhancements-4)
2022
- [2.1.4](#214)
21-
- [bug fixes](#bug-fixes-3)
23+
- [bug fixes](#bug-fixes-4)
2224
- [enhancements](#enhancements-5)
2325
- [doc updates](#doc-updates-1)
2426
- [test updates](#test-updates)
2527
- [2.1.3](#213)
2628
- [enhancements](#enhancements-6)
2729
- [2.1.2](#212)
28-
- [bug fixes](#bug-fixes-4)
30+
- [bug fixes](#bug-fixes-5)
2931
- [2.1.1](#211)
3032
- [enhancements](#enhancements-7)
3133
- [2.1.0](#210)
32-
- [bug fixes](#bug-fixes-5)
34+
- [bug fixes](#bug-fixes-6)
3335
- [enhancements](#enhancements-8)
3436
- [doc updates](#doc-updates-2)
3537
- [2.0.3](#203)
@@ -48,6 +50,16 @@
4850

4951
<!-- /MarkdownTOC -->
5052

53+
# 2.2.1
54+
55+
[Released](https://github.com/tanium/pytan/releases/tag/2.2.1) on Jun 30 2017
56+
57+
## bug fixes
58+
59+
* Changing how CSV export of ResultSet objects worked to include Count column by default broke some validation tests
60+
* Added remove_count=True to Valid Export ResultSet tests
61+
* Also added remove_count as valid option to constants.EXPORT_MAPS so it can get funneled down properly to the underlying methods
62+
5163
# 2.2.0
5264

5365
[Released](https://github.com/tanium/pytan/releases/tag/2.2.0) on Jun 27 2017

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
This is a set of packages and scripts that provide a simple way for interfacing with the [Tanium](https://www.tanium.com/) SOAP API using python or the command line.
1818

1919
## Versions
20-
* **2.2.0 (Jun 27 2017)** [Release Link](https://github.com/tanium/pytan/releases/tag/2.2.0)
20+
* **2.2.1 (Jun 30 2017)** [Release Link](https://github.com/tanium/pytan/releases/tag/2.2.1)
2121

2222
## Documentation Links
2323

@@ -49,7 +49,7 @@ mkdir ~/tanium
4949
* Extract the PyTan ZIP file you downloaded to ~/tanium:
5050
```
5151
cd ~/tanium
52-
unzip pytan-2.2.0.zip
52+
unzip pytan-2.2.1.zip
5353
```
5454
* Verify that your OSX install has Python 2.7.x installed and that your PYTHONPATH points to 2.7.x:
5555
```
@@ -66,7 +66,7 @@ mkdir ~/tanium
6666
* Extract the PyTan ZIP file you downloaded to ~/tanium:
6767
```
6868
cd ~/tanium
69-
unzip pytan-2.2.0.zip
69+
unzip pytan-2.2.1.zip
7070
```
7171
* Verify that your linux distribution has Python 2.7.x installed and that your PYTHONPATH points to 2.7.x:
7272
```

lib/pytan/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'''A python package that makes using the Tanium Server SOAP API easy.'''
55

66
__title__ = 'PyTan'
7-
__version__ = '2.2.0'
7+
__version__ = '2.2.1'
88
"""
99
Version of PyTan
1010
"""

0 commit comments

Comments
 (0)