Skip to content

Commit

Permalink
Fix #86 and Fix #95; change ACE protocol handling
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Mar 22, 2017
1 parent 34d5611 commit f0268ae
Show file tree
Hide file tree
Showing 4 changed files with 225 additions and 167 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

## [Unreleased][unreleased]

### Added

* `delphin.interfaces.ace.AceTransferer` - due to a limitation with ACE,
only the regular (non-tsdb) mode is allowed in transfer
* `delphin.interfaces.ace.transfer()`
* `delphin.interfaces.ace.transfer_from_iterable()`

### Changed

* `delphin.interfaces.ace` no longer captures stderr
* `delphin.interfaces.ace` attempts to restart a process that closed
unexpectedly

### Removed
### Fixed

* `delphin.interfaces.ace` ignores stderr, which effectively fixes #86
* `delphin.interfaces.ace` joins content lines in tsdb mode---fixes #95

### Deprecated

## [v0.6.0][]

This release replaces the top-level `pyDelphin` and `mrs.py` scripts
Expand Down
4 changes: 2 additions & 2 deletions delphin/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# the warehouse project:
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py

__version__ = '0.6.0'
__version__ = '0.6.1'
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split()

__title__ = 'PyDelphin'
Expand All @@ -14,4 +14,4 @@
__email__ = '[email protected]'

__license__ = 'MIT'
__copyright__ = '2013 %s <%s> and contributors' % (__author__, __email__)
__copyright__ = '2013--2017 %s <%s> and contributors' % (__author__, __email__)
Loading

0 comments on commit f0268ae

Please sign in to comment.