]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Setup master as 1.3
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 Mar 2018 19:41:03 +0000 (14:41 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 Mar 2018 19:41:23 +0000 (14:41 -0500)
Change-Id: I1e8240d19f891cb6575f10d93524b551d74864ea

doc/build/changelog/migration_13.rst [new file with mode: 0644]
doc/build/changelog/unreleased_13/README.txt [new file with mode: 0644]
doc/build/conf.py
doc/build/core/tutorial.rst
doc/build/intro.rst
doc/build/orm/tutorial.rst
lib/sqlalchemy/__init__.py

diff --git a/doc/build/changelog/migration_13.rst b/doc/build/changelog/migration_13.rst
new file mode 100644 (file)
index 0000000..27c2066
--- /dev/null
@@ -0,0 +1,45 @@
+=============================
+What's New in SQLAlchemy 1.3?
+=============================
+
+.. admonition:: About this Document
+
+    This document describes changes between SQLAlchemy version 1.2
+    and SQLAlchemy version 1.3.
+
+Introduction
+============
+
+This guide introduces what's new in SQLAlchemy version 1.23
+and also documents changes which affect users migrating
+their applications from the 1.2 series of SQLAlchemy to 1.3.
+
+Please carefully review the sections on behavioral changes for
+potentially backwards-incompatible changes in behavior.
+
+New Features and Improvements - ORM
+===================================
+
+Key Behavioral Changes - ORM
+=============================
+
+New Features and Improvements - Core
+====================================
+
+Key Behavioral Changes - Core
+=============================
+
+Dialect Improvements and Changes - PostgreSQL
+=============================================
+
+Dialect Improvements and Changes - MySQL
+=============================================
+
+Dialect Improvements and Changes - SQLite
+=============================================
+
+Dialect Improvements and Changes - Oracle
+=============================================
+
+Dialect Improvements and Changes - SQL Server
+=============================================
diff --git a/doc/build/changelog/unreleased_13/README.txt b/doc/build/changelog/unreleased_13/README.txt
new file mode 100644 (file)
index 0000000..1d2b344
--- /dev/null
@@ -0,0 +1,12 @@
+Individual per-changelog files go here
+in .rst format, which are pulled in by
+changelog (version 0.4.0 or higher) to
+be rendered into the changelog_xx.rst file.
+At release time, the files here are removed and written
+directly into the changelog.
+
+Rationale is so that multiple changes being merged
+into gerrit don't produce conflicts.   Note that
+gerrit does not support custom merge handlers unlike
+git itself.
+
index 33b70dff6ba7ec764fb9abe4c1dc74790ce8b192..5f8ecda95ce83035cfc041fba32a558d5444646f 100644 (file)
@@ -108,11 +108,11 @@ copyright = u'2007-2018, the SQLAlchemy authors and contributors'
 # built documents.
 #
 # The short X.Y version.
-version = "1.2"
+version = "1.3"
 # The full version, including alpha/beta/rc tags.
-release = "1.2.4"
+release = "1.3.0b1"
 
-release_date = "February 22, 2018"
+release_date = None
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"
index 1069ae5c78f406db47ab0302a7c60c319ef9e91c..79057e678d35ce00dd1c570efe887278d07eedf8 100644 (file)
@@ -50,13 +50,13 @@ Version Check
 =============
 
 
-A quick check to verify that we are on at least **version 1.2** of SQLAlchemy:
+A quick check to verify that we are on at least **version 1.3** of SQLAlchemy:
 
 .. sourcecode:: pycon+sql
 
     >>> import sqlalchemy
     >>> sqlalchemy.__version__  # doctest: +SKIP
-    1.2.0
+    1.3.0
 
 Connecting
 ==========
index a64a1a23c28a7dbc1ad9c574a6ee6f0bf41574b3..bc2e43f548caaa26d4bcfa9ea23f7c56b053e541 100644 (file)
@@ -159,7 +159,7 @@ the available DBAPIs for each database, including external links.
 Checking the Installed SQLAlchemy Version
 ------------------------------------------
 
-This documentation covers SQLAlchemy version 1.2. If you're working on a
+This documentation covers SQLAlchemy version 1.3. If you're working on a
 system that already has SQLAlchemy installed, check the version from your
 Python prompt like this:
 
@@ -167,11 +167,11 @@ Python prompt like this:
 
      >>> import sqlalchemy
      >>> sqlalchemy.__version__ # doctest: +SKIP
-     1.2.0
+     1.3.0
 
 .. _migration:
 
-1.1 to 1.2 Migration
+1.2 to 1.3 Migration
 =====================
 
-Notes on what's changed from 1.1 to 1.2 is available here at :doc:`changelog/migration_12`.
+Notes on what's changed from 1.2 to 1.3 is available here at :doc:`changelog/migration_13`.
index 419e0f4101aca6065d77a823a8589c944cb8a0e1..79315cada229ab3214d6e7f0487b7412ce608302 100644 (file)
@@ -40,11 +40,11 @@ following text represents the expected return value.
 Version Check
 =============
 
-A quick check to verify that we are on at least **version 1.2** of SQLAlchemy::
+A quick check to verify that we are on at least **version 1.3** of SQLAlchemy::
 
     >>> import sqlalchemy
     >>> sqlalchemy.__version__ # doctest:+SKIP
-    1.2.0
+    1.3.0
 
 Connecting
 ==========
index 77cbbde98cb1d5347548b42809ba787d9d7dac3a..e77bd65bd03c9384a92891458c459e71758c80b8 100644 (file)
@@ -130,7 +130,7 @@ from .schema import (
 from .inspection import inspect
 from .engine import create_engine, engine_from_config
 
-__version__ = '1.2.5'
+__version__ = '1.3.0b1'
 
 
 def __go(lcls):