Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 0fc3522

Browse files
committed
Tag for 3.8.1 release
1 parent 8b7b17f commit 0fc3522

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22

33
## [Unreleased]
44

5+
## [3.8.1] - 2019-08-19
6+
### Changed
7+
- Updated blobxfer to 1.9.1
8+
59
### Fixed
10+
- Task runner regressions for non-native mode pools including `input_data`,
11+
`output_data` and `pre_execution_command` for native mode pools
12+
([#301](https://github.com/Azure/batch-shipyard/issues/301))
613
- Provisioning Network Direct RDMA VM sizes (A8/A9/NC24rX/H16r/H16mr) resulted
714
in start task failures
15+
([#299](https://github.com/Azure/batch-shipyard/issues/299))
816

917
## [3.8.0] - 2019-08-13
1018
### Added
@@ -1597,7 +1605,8 @@ transfer is disabled
15971605
#### Added
15981606
- Initial release
15991607

1600-
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.8.0...HEAD
1608+
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/3.8.1...HEAD
1609+
[3.8.1]: https://github.com/Azure/batch-shipyard/compare/3.8.0...3.8.1
16011610
[3.8.0]: https://github.com/Azure/batch-shipyard/compare/3.7.1...3.8.0
16021611
[3.7.1]: https://github.com/Azure/batch-shipyard/compare/3.7.0...3.7.1
16031612
[3.7.0]: https://github.com/Azure/batch-shipyard/compare/3.6.1...3.7.0

convoy/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
logger = logging.getLogger(__name__)
6060
util.setup_logger(logger)
6161
# global defines
62-
_BLOBXFER_VERSION = '1.9.0'
62+
_BLOBXFER_VERSION = '1.9.1'
6363
_MEGABYTE = 1048576
6464
_MAX_READ_BLOCKSIZE_BYTES = 4194304
6565
_FILE_SPLIT_PREFIX = '_shipyard-'

convoy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '3.8.0'
25+
__version__ = '3.8.1'

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ azure-storage-blob==2.0.1
1313
azure-storage-common==2.0.0
1414
azure-storage-file==2.0.1
1515
azure-storage-queue==2.0.1
16-
blobxfer==1.9.0
16+
blobxfer==1.9.1
1717
click==7.0
1818
future==0.17.1
1919
futures==3.3.0; python_version < '3'
@@ -23,5 +23,5 @@ msrestazure==0.6.1
2323
pathlib2==2.3.4; python_version < '3.5'
2424
python-dateutil==2.8.0
2525
requests==2.22.0
26-
ruamel.yaml==0.16.1
26+
ruamel.yaml==0.16.5
2727
scandir==1.10.0; python_version < '3.5'

0 commit comments

Comments
 (0)