Skip to content

Commit

Permalink
[TASK] Bump xmlrpc api version, bump pyplanet version, update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvlk committed Jun 18, 2017
1 parent a15d116 commit ed5847b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changelog
=========

0.4.2
-----

Core
~~~~

* Improvement: Bump XML-RPC Script API to version 2.2.0.

Apps
~~~~

* Feature: Add //shuffle and //readmaplist. Both are unsure to work.
* Improvement: Further investigate and report issues related to Dedimania.
* Bugfix: Fixing negative count issue on the info widgets.
* Bugfix: Remove faulty and debug line from dedimania api catch block.
* Bugfix: Properly handle the dedimania response when player is not correct.
* Bugfix: Fixing issues with boolean values and the //modesettings GUI.

0.4.1
-----

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4.1'
version = '0.4.2'
# The full version, including alpha/beta/rc tags.
release = '0.4.1'
release = '0.4.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyplanet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
PyPlanet, a robust and simple Maniaplanet Server Controller for Python 3.5+.
Please see LICENSE file in root of project.
"""
__version__ = '0.4.1'
__version__ = '0.4.2'
__author__ = 'Tom Valk'
2 changes: 1 addition & 1 deletion pyplanet/core/gbx/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class GbxClient(GbxRemote):

AUTO_RESPONSE_ID = object()
SUPPORTED_SCRIPT_API_VERSIONS = [
'2.0.0', '2.1.0'
'2.0.0', '2.1.0', '2.2.0'
]

def __init__(self, *args, script_api_version=empty, **kwargs):
Expand Down

0 comments on commit ed5847b

Please sign in to comment.