]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Version bump for 3.4.10. v3.4.10
authorLarry Hastings <larry@hastings.org>
Mon, 18 Mar 2019 16:51:26 +0000 (09:51 -0700)
committerLarry Hastings <larry@hastings.org>
Mon, 18 Mar 2019 16:51:26 +0000 (09:51 -0700)
Include/patchlevel.h
README

index 713d090dc2b1da9d427f0609fe0ec714c88a9811..ad5c249a4d5f2343a337c655617cc7170263a8e5 100644 (file)
 #define PY_MAJOR_VERSION       3
 #define PY_MINOR_VERSION       4
 #define PY_MICRO_VERSION       10
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL      1
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "3.4.10rc1+"
+#define PY_VERSION             "3.4.10"
 /*--end constants--*/
 
 /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
diff --git a/README b/README
index 644079004165fbf6417f29a8a9bee4f8c74dcb4a..80db03730ec8bb31461b4d138d5fbd2f5853da99 100644 (file)
--- a/README
+++ b/README
@@ -1,10 +1,29 @@
-This is Python version 3.4.10rc1
-================================
+This is Python version 3.4.10
+=============================
 
 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Python Software
 Foundation.  All rights reserved.
 
+Python 3.4 Is No Longer Supported
+---------------------------------
+
+Python 3.4.10 is the final release in the Python 3.4 series.  As of this
+release, the 3.4 branch has been retired, no further changes to 3.4 will be
+accepted, and no new releases will be made.  This is standard Python policy;
+Python releases get five years of support and are then retired.
+
+If you're still using Python 3.4, you should consider upgrading to the
+current version--3.7.2 as of this writing.  Newer versions of Python
+have many new features, performance improvements, and bug fixes, which
+should all serve to enhance your Python programming experience.
+
+We in the Python core development community thank you for your interest
+in 3.4, and we wish you all the best!
+
+Python 3.x
+----------
+
 Python 3.x is a new version of the language, which is incompatible with the 2.x
 line of releases.  The language is mostly the same, but many details, especially
 how built-in objects like dictionaries and strings work, have changed