script:
     - ./vendor/bin/phpunit -v $PHPUNIT_OPTS tests
     - python3 extras/test.py
+    - python3 extras/test.pl
 
 after_failure:
   # Troubleshoot test env build problems
 
-XML-RPC for PHP version 4.5.0 - (unreleased)
+XML-RPC for PHP version 4.5.0 - 2020/12/31
 
 * new: it is now possible to control the precision used when serializing DOUBLE values via usage of
   `PhpXmlRpc::$xmlpc_double_precision`
 
 * minor improvements in the debugger to allow easier integration of phpxmlrpc/jsonrpc and friends
 
-* removed obsolete files from the 'extras' directory
+* removed obsolete files from the 'extras' directory and updated the demo perl and python files
 
 
 XML-RPC for PHP version 4.4.3 - 2020/12/17
 
     print (r)
 
     # test base 64
-    b = 'Mary had a little lamb She tied it to a pylon'
-    b = base64.b64encode(b.encode('ascii'))
-    r = server.examples.decode64(b)
+    r = server.examples.decode64(b'Mary had a little lamb She tied it to a pylon')
     print (r)
     
 except xmlrpc.client.Fault as err: