Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 4, 2015
1 parent 03f044c commit bf9b183
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
`airflow.www.login`
"""
from builtins import object
__version__ = "1.5.0"
__version__ = "1.5.1"

import logging
import os
Expand Down
3 changes: 2 additions & 1 deletion airflow/migrations/versions/e3a246e0dc1_current_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

from alembic import op
import sqlalchemy as sa
from sqlalchemy import func
from sqlalchemy.engine.reflection import Inspector

from airflow import settings
Expand Down Expand Up @@ -232,7 +233,7 @@ def upgrade():
sa.Column(
'timestamp',
sa.DateTime(),
server_default=sa.text(u'CURRENT_TIMESTAMP'),
default=func.now(),
nullable=False),
sa.Column('execution_date', sa.DateTime(), nullable=False),
sa.Column('task_id', sa.String(length=250), nullable=False),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

# Kept manually in sync with airflow.__version__
version = '1.5.0'
version = '1.5.1'

doc = [
'sphinx>=1.2.3',
Expand Down

0 comments on commit bf9b183

Please sign in to comment.