This should have been bumped with '
c547dc7'.
Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
Reviewed-by: Daniel Axtens <dja@axtens.net>
def test_pw_rpc_version(self):
# If you update the RPC version, update the tests!
- self.assertEqual(self.rpc.pw_rpc_version(), [1, 2, 0])
+ self.assertEqual(self.rpc.pw_rpc_version(), [1, 3, 0])
def test_get_redirect(self):
response = self.client.patch(self.url)
recommended that one first test the API version for compatibility
before making method calls.
+ History:
+
+ 1.0.0: Patchwork 1.0 release
+ 1.1.0: ???
+ 1.2.0: ???
+ 1.3.0: Add support for negative indexing of Checks
+
Returns:
Version of the API.
"""
- return (1, 2, 0)
+ return (1, 3, 0)
@xmlrpc_method()