Skip to content

Commit 1e8ccef

Browse files
committed
Prepare release 8.0.18
1 parent 7820919 commit 1e8ccef

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-python/en/
1010

11+
v8.0.18
12+
=======
13+
14+
- WL#13194: Add support for Python 3.8
15+
- BUG#29909157: Table scans of floats causes memory leak with the C extension
16+
- BUG#25349794: Add read_default_file alias for option_files in connect()
17+
1118
v8.0.17
1219
=======
1320

LICENSE.txt

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Introduction
1010
third-party software which may be included in this distribution of
1111
MySQL Connector/Python 8.0.
1212

13-
Last updated: June 2019
13+
Last updated: August 2019
1414

1515
Licensing Information
1616

@@ -556,6 +556,43 @@ code is not standalone and requires a support library to be
556556
linked with it. This support library is itself covered by
557557
the above license.
558558

559+
ISC
560+
561+
The following software may be included in this product:
562+
ISC License
563+
564+
Copyright (C) Dnspython Contributors
565+
566+
Permission to use, copy, modify, and/or distribute this software for
567+
any purpose with or without fee is hereby granted, provided that the
568+
above copyright notice and this permission notice appear in all
569+
copies.
570+
571+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
572+
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
573+
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
574+
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
575+
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
576+
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
577+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
578+
PERFORMANCE OF THIS SOFTWARE.
579+
580+
Copyright (C) 2001-2017 Nominum, Inc.
581+
Copyright (C) Google Inc.
582+
583+
Permission to use, copy, modify, and distribute this software and its
584+
documentation for any purpose with or without fee is hereby granted,
585+
provided that the above copyright notice and this permission notice
586+
appear in all copies.
587+
588+
THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
589+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
590+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
591+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
592+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
593+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
594+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
595+
559596
OpenSSL License
560597

561598
You are receiving a copy of OpenSSL as part of this product in object

cpyint

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysql.connector.version.
3333
"""
3434

35-
VERSION = (8, 0, 17, '', 1)
35+
VERSION = (8, 0, 18, '', 1)
3636

3737
if VERSION[3] and VERSION[4]:
3838
VERSION_TEXT = '{0}.{1}.{2}{3}{4}'.format(*VERSION)

0 commit comments

Comments
 (0)