From: Federico Caselli Date: Mon, 27 Apr 2020 19:10:32 +0000 (+0200) Subject: fix typo SQLAchemy -> SQLAlchemy X-Git-Tag: rel_1_4_0b1~362 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba371c119cfbad0eacb517284d871f08e1083293;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo SQLAchemy -> SQLAlchemy Change-Id: If03ccc2c2bec1c48eb6ed26091e1588b3b46e781 --- diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dd9b9cdbea..6c85f930aa 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -30,7 +30,7 @@ See also [Reporting Bugs](https://www.sqlalchemy.org/participate.html#bugs) on t **Versions.** - OS: - Python: - - SQLAchemy: + - SQLAlchemy: - Database: - DBAPI: diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 5a4118ee9e..dd1c62b9dc 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,6 +1,6 @@ --- name: Question -about: Question regarding SQLAchemy features +about: Question regarding SQLAlchemy features title: '' labels: requires triage assignees: '' diff --git a/doc/build/changelog/migration_04.rst b/doc/build/changelog/migration_04.rst index c56c3c213d..12727c0a79 100644 --- a/doc/build/changelog/migration_04.rst +++ b/doc/build/changelog/migration_04.rst @@ -45,8 +45,8 @@ they'll work there too. Module Imports ============== -In 0.3, "``from sqlachemy import *``" would import all of -sqlachemy's sub-modules into your namespace. Version 0.4 no +In 0.3, "``from sqlalchemy import *``" would import all of +sqlalchemy's sub-modules into your namespace. Version 0.4 no longer imports sub-modules into the namespace. This may mean you need to add extra imports into your code. diff --git a/doc/build/changelog/migration_13.rst b/doc/build/changelog/migration_13.rst index 7e6c62ed0d..78ac21fb54 100644 --- a/doc/build/changelog/migration_13.rst +++ b/doc/build/changelog/migration_13.rst @@ -1666,7 +1666,7 @@ New parameters to affect IDENTITY start and increment, use of Sequence deprecate --------------------------------------------------------------------------------- SQL Server as of SQL Server 2012 now supports sequences with real -``CREATE SEQUENCE`` syntax. In :ticket:`4235`, SQLAchemy will add support for +``CREATE SEQUENCE`` syntax. In :ticket:`4235`, SQLAlchemy will add support for these using :class:`.Sequence` in the same way as for any other dialect. However, the current situation is that :class:`.Sequence` has been repurposed on SQL Server specifically in order to affect the "start" and "increment"