Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
bump version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dtheodor committed May 31, 2015
1 parent 610be9e commit 3c0653f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

Version 1.1
-----------

Released on 2015-05-31.

Add support for Python 2.6-3.4, pypy, and SQL Alchemy 0.9-1.0.

Version 1.0
-----------

Expand Down
2 changes: 1 addition & 1 deletion flask_sqlalchemy_session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from sqlalchemy.orm import scoped_session

__all__ = ["current_session", "flask_scoped_session"]
__version__ = 1.0
__version__ = 1.1


def _get_session():
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
Provides an SQLAlchemy scoped session that creates
unique sessions per Flask request
"""
import sys
import os
from setuptools import setup

if sys.version_info < (2, 6):
raise Exception("Flask-SQLAlchemy-Session requires Python 2.6 or higher.")

# Hard linking doesn't work inside VirtualBox shared folders. This means that
# you can't use tox in a directory that is being shared with Vagrant,
# since tox relies on `python setup.py sdist` which uses hard links. As a
Expand All @@ -21,7 +25,7 @@

setup(
name="Flask-SQLAlchemy-Session",
version="1.0",
version="1.1",
packages=["flask_sqlalchemy_session"],
author="Dimitris Theodorou",
author_email="dimitris.theodorou@gmail.com",
Expand All @@ -34,7 +38,8 @@
'Intended Audience :: Developers',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit 3c0653f

Please sign in to comment.