diff --git a/client-py3/full/src/UDSClient.py b/client-py3/full/src/UDSClient.py index 043ff3cb..50038032 100755 --- a/client-py3/full/src/UDSClient.py +++ b/client-py3/full/src/UDSClient.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2017 Virtual Cable S.L. +# Copyright (c) 2014-2021 Virtual Cable S.L. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, @@ -40,6 +40,7 @@ import six from uds.rest import RestRequest from uds.forward import forward # pylint: disable=unused-import +from uds.tunnel import forward as f2 # pylint: disable=unused-import from uds.log import logger from uds import tools from uds import VERSION diff --git a/client-py3/full/src/uds/__init__.py b/client-py3/full/src/uds/__init__.py index 7713ad9c..7a2581c1 100644 --- a/client-py3/full/src/uds/__init__.py +++ b/client-py3/full/src/uds/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2014-2017 Virtual Cable S.L. +# Copyright (c) 2014-2021 Virtual Cable S.L. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, @@ -31,7 +31,7 @@ ''' from __future__ import unicode_literals -VERSION = '3.0.0' +VERSION = '3.5.0' __title__ = 'udclient' __version__ = VERSION diff --git a/client-py3/full/src/uds/log.py b/client-py3/full/src/uds/log.py index 4bd5ecf3..047f6d36 100644 --- a/client-py3/full/src/uds/log.py +++ b/client-py3/full/src/uds/log.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2014 Virtual Cable S.L. +# Copyright (c) 2014-2021 Virtual Cable S.L.U. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, diff --git a/client-py3/full/src/uds/osDetector.py b/client-py3/full/src/uds/osDetector.py index aa29d390..95310db7 100644 --- a/client-py3/full/src/uds/osDetector.py +++ b/client-py3/full/src/uds/osDetector.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2017 Virtual Cable S.L. +# Copyright (c) 2017-2021 Virtual Cable S.L.U. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, diff --git a/client-py3/full/src/uds/rest.py b/client-py3/full/src/uds/rest.py index 10d0de72..f552d2f3 100644 --- a/client-py3/full/src/uds/rest.py +++ b/client-py3/full/src/uds/rest.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- - # -# Copyright (c) 2017 Virtual Cable S.L. +# Copyright (c) 2017-2021 Virtual Cable S.L.U. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, diff --git a/client-py3/full/src/uds/tools.py b/client-py3/full/src/uds/tools.py index 0a2ab8c8..46e51d36 100644 --- a/client-py3/full/src/uds/tools.py +++ b/client-py3/full/src/uds/tools.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- - # -# Copyright (c) 2015 Virtual Cable S.L. +# Copyright (c) 2015-2021 Virtual Cable S.L.U. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, diff --git a/client-py3/full/src/uds/tunnel.py b/client-py3/full/src/uds/tunnel.py index e83031ff..c6463ce8 100644 --- a/client-py3/full/src/uds/tunnel.py +++ b/client-py3/full/src/uds/tunnel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2020 Virtual Cable S.L.U. +# Copyright (c) 2021 Virtual Cable S.L.U. # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification,