[Pkg-mpd-commits] [python-mpd] annotated tag upstream/1.0.0 created (now f7b7bcf)

Simon McVittie smcv at debian.org
Sat Feb 24 14:55:49 UTC 2018


This is an automated email from the git hooks/post-receive script.

smcv pushed a change to annotated tag upstream/1.0.0
in repository python-mpd.

        at  f7b7bcf   (tag)
   tagging  03fbbd61e9f286b241993bc0d632868db786c374 (commit)
  replaces  upstream/0.5.5
 tagged by  Simon McVittie
        on  Sat Feb 24 11:33:56 2018 +0000

- Log -----------------------------------------------------------------
Upstream version 1.0.0

Jörg Thalheim (35):
      travis test
      various documentation generation fixes
      reformating + whitespace
      deprecate send_ and fetch_ variants of commands
      examples/twisted.py: rename to avoid import error
      stub class for MPDProtocol if twisted is not available
      add twisted as optional dependency
      twisted: use unicode by default
      doc/changes: mention twisted, deprecate send_*/fetch_*
      exclude python 3.2 from twisted testing
      reformating + whitespace
      deprecate send_ and fetch_ variants of commands
      stub class for MPDProtocol if twisted is not available
      add twisted as optional dependency
      twisted: use unicode by default
      doc/changes: mention twisted, deprecate send_*/fetch_*
      Merge pull request #79 from mineo/future-docs
      Merge pull request #82 from rnixx/twisted_protocol_fix
      travis: allow nightly to fail
      Merge pull request #83 from SylvainDe/master
      README.rst: use https clone link
      README.rst: fix headline
      make port optional when connecting via unix socket
      Remove python3.6-dev
      Merge pull request #87 from chme/outputvolume
      Merge pull request #92 from Mic92/broken-pipe
      Merge pull request #85 from chrysn/asyncio
      doc/changes: mention async io support
      doc/generate_command_reference.py: switch to github
      change email address
      bump release v1.0.0
      add doc/_static to make sphinx happy
      move documentation to readthedocs
      remove jabber muc link
      mpd/base: update version

Marcel Jira (1):
      re-throw BrokenPipeError as mpd.ConnectionError

Robert Niederreiter (22):
      Update ignores
      Introduce MPDClientBase class and inherit MPDClient from it
      Reorganize package structure. Use coverage in tox.ini
      Command registration is now done via ``mpd_commands`` decorator. Commands are registered on ``MPDClientBase`` class now with the corresponding result parser callbacks. Adopt ``MPDClient`` class. Add more tests
      Add twisted based async client
      Add missing import
      Add twisted example
      Twisted client works with python 3
      Add tests for twisted client
      Minor test fixes
      Fix tox.ini
      Another travis attempt
      Another travis attempt
      Twisted client test coverage 100%
      Merge branch 'twisted' of https://github.com/Mic92/python-mpd2 into overhauling
      no unicode literals
      Add twisted example
      Twisted client works with python 3
      Add tests for twisted client
      Merge branch 'master' of https://github.com/Mic92/python-mpd2 into overhauling
      Implement proper argument parsing for twisted client
      Synchronize ``lineReceived`` and ``_execute`` methods on twisted protocol

Simon McVittie (1):
      New upstream version 1.0.0

Sylvain (1):
      Add most recent Python versions in Travis CI

Wieland Hoffmann (4):
      Remove self. in the future compatible docs
      Call the correct function in the future compatible example
      Copy the correct quote from the MPD docs
      Link to the source of the quote about UTF-8

chme (1):
      Add command outputvolume

chrysn (16):
      asyncio: Initial support
      asyncio: prepare `async for` iteration over commands
      asyncio: Allow streaming of the `return _parse_objects` commands
      asyncio: Extend example
      base: Add direct commands for async overriding
      base: Move obtaining of hello line out of hello function
      asyncio: Add Python 3.5 compatibility
      asyncio base modifications: Restore Python 2 compatibility
      asyncio: error handling / documentation / fixes
      asyncio: add to test suite
      asyncio: Document version constraints
      asyncio: move disconnect handling into __run where it can propagate to results
      asyncio: Automatically idle in command loop
      asyncio: Proper idle implementation
      asyncio: Restore Python 3.5 compatibility
      asyncio: Comment wording / capitalization / orthography

-----------------------------------------------------------------------

This annotated tag includes the following new commits:

       new  e84f925   Update ignores
       new  ff08806   Introduce MPDClientBase class and inherit MPDClient from it
       new  00377e7   travis test
       new  d5e5216   various documentation generation fixes
       new  ab79042   Reorganize package structure. Use coverage in tox.ini
       new  7a80317   Command registration is now done via ``mpd_commands`` decorator. Commands are registered on ``MPDClientBase`` class now with the corresponding result parser callbacks. Adopt ``MPDClient`` class. Add more tests
       new  a8f1b24   Add twisted based async client
       new  a661986   Add missing import
       new  fc040af   Add twisted example
       new  c6266eb   reformating + whitespace
       new  3a32a7d   deprecate send_ and fetch_ variants of commands
       new  ef42518   examples/twisted.py: rename to avoid import error
       new  81f75ff   stub class for MPDProtocol if twisted is not available
       new  7892270   add twisted as optional dependency
       new  0ef01b6   twisted: use unicode by default
       new  2ee99a0   doc/changes: mention twisted, deprecate send_*/fetch_*
       new  482c936   Twisted client works with python 3
       new  d169794   Add tests for twisted client
       new  4831ac7   Minor test fixes
       new  a87a419   Fix tox.ini
       new  cb4b753   Another travis attempt
       new  0a2a93b   Another travis attempt
       new  e06c09f   exclude python 3.2 from twisted testing
       new  be5ce62   Twisted client test coverage 100%
       new  d283671   Merge branch 'twisted' of https://github.com/Mic92/python-mpd2 into overhauling
       new  6464d01   no unicode literals
       new  12e7e00   Add twisted example
       new  4482aa3   reformating + whitespace
       new  f3864ac   deprecate send_ and fetch_ variants of commands
       new  a818676   stub class for MPDProtocol if twisted is not available
       new  1b4bffa   add twisted as optional dependency
       new  cfb47c4   twisted: use unicode by default
       new  8363582   doc/changes: mention twisted, deprecate send_*/fetch_*
       new  a72ec13   Twisted client works with python 3
       new  5bf0e06   Add tests for twisted client
       new  e886d2f   Merge branch 'master' of https://github.com/Mic92/python-mpd2 into overhauling
       new  9523599   Implement proper argument parsing for twisted client
       new  cd5c072   Remove self. in the future compatible docs
       new  f483eab   Call the correct function in the future compatible example
       new  c200ee4   Copy the correct quote from the MPD docs
       new  4450b2f   Link to the source of the quote about UTF-8
       new  9894ff2   Merge pull request #79 from mineo/future-docs
       new  d84c925   Synchronize ``lineReceived`` and ``_execute`` methods on twisted protocol
       new  7025f8b   Merge pull request #82 from rnixx/twisted_protocol_fix
       new  c77319f   Add most recent Python versions in Travis CI
       new  99db88d   travis: allow nightly to fail
       new  9567cc3   Merge pull request #83 from SylvainDe/master
       new  e2db05a   README.rst: use https clone link
       new  d131404   README.rst: fix headline
       new  dcb2a00   asyncio: Initial support
       new  01d991a   asyncio: prepare `async for` iteration over commands
       new  fe93e2a   asyncio: Allow streaming of the `return _parse_objects` commands
       new  12b4783   asyncio: Extend example
       new  9a3eacc   base: Add direct commands for async overriding
       new  66c7477   base: Move obtaining of hello line out of hello function
       new  37ed4d0   asyncio: Add Python 3.5 compatibility
       new  2d383a4   asyncio base modifications: Restore Python 2 compatibility
       new  06b3a59   asyncio: error handling / documentation / fixes
       new  64eef0f   asyncio: add to test suite
       new  1b90ef1   asyncio: Document version constraints
       new  220d0d3   asyncio: move disconnect handling into __run where it can propagate to results
       new  4eee007   asyncio: Automatically idle in command loop
       new  1efb003   asyncio: Proper idle implementation
       new  6c5ccc3   asyncio: Restore Python 3.5 compatibility
       new  f6f3983   Add command outputvolume
       new  e1b9bc7   make port optional when connecting via unix socket
       new  ea8719d   asyncio: Comment wording / capitalization / orthography
       new  60dbc27   re-throw BrokenPipeError as mpd.ConnectionError
       new  edfe2ad   Remove python3.6-dev
       new  55d83c4   Merge pull request #87 from chme/outputvolume
       new  0b51a56   Merge pull request #92 from Mic92/broken-pipe
       new  2199491   Merge pull request #85 from chrysn/asyncio
       new  5dca848   doc/changes: mention async io support
       new  4ac93b5   doc/generate_command_reference.py: switch to github
       new  c3af0d8   change email address
       new  b60e95a   bump release v1.0.0
       new  65b5810   add doc/_static to make sphinx happy
       new  8abccf4   move documentation to readthedocs
       new  21655d1   remove jabber muc link
       new  354af63   mpd/base: update version
       new  03fbbd6   New upstream version 1.0.0

The 81 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mpd/python-mpd.git



More information about the Pkg-mpd-commits mailing list