You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by da...@apache.org on 2016/05/21 00:34:58 UTC

[1/2] incubator-airflow git commit: Pointing setup.py to then new repo

Repository: incubator-airflow
Updated Branches:
  refs/heads/master e711028ac -> 893da2add


Pointing setup.py to then new repo


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/317ad5dd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/317ad5dd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/317ad5dd

Branch: refs/heads/master
Commit: 317ad5dda0230145b70ccacfa132fc1ee8390b71
Parents: e711028
Author: Maxime Beauchemin <ma...@gmail.com>
Authored: Fri May 20 17:14:21 2016 -0700
Committer: Maxime Beauchemin <ma...@gmail.com>
Committed: Fri May 20 17:14:21 2016 -0700

----------------------------------------------------------------------
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/317ad5dd/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 27133c6..d8d7e82 100644
--- a/setup.py
+++ b/setup.py
@@ -232,9 +232,9 @@ def do_setup():
         ],
         author='Maxime Beauchemin',
         author_email='maximebeauchemin@gmail.com',
-        url='https://github.com/airbnb/airflow',
+        url='https://github.com/apache/incubator-airflow',
         download_url=(
-            'https://github.com/airbnb/airflow/tarball/' + version),
+            'https://github.com/apache/incubator-airflow/tarball/' + version),
         cmdclass={'test': Tox,
                   'extra_clean': CleanCommand,
                   },


[2/2] incubator-airflow git commit: 1.7.1.1

Posted by da...@apache.org.
1.7.1.1


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/893da2ad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/893da2ad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/893da2ad

Branch: refs/heads/master
Commit: 893da2add9529930efc21f934cc0f32671d8cdaf
Parents: 317ad5d
Author: Maxime Beauchemin <ma...@gmail.com>
Authored: Fri May 20 17:16:22 2016 -0700
Committer: Maxime Beauchemin <ma...@gmail.com>
Committed: Fri May 20 17:16:22 2016 -0700

----------------------------------------------------------------------
 airflow/__init__.py | 2 +-
 setup.py            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/893da2ad/airflow/__init__.py
----------------------------------------------------------------------
diff --git a/airflow/__init__.py b/airflow/__init__.py
index 900c744..6b59be3 100644
--- a/airflow/__init__.py
+++ b/airflow/__init__.py
@@ -20,7 +20,7 @@ in their PYTHONPATH. airflow_login should be based off the
 `airflow.www.login`
 """
 from builtins import object
-__version__ = "1.7.1"
+__version__ = "1.7.1.1"
 
 import logging
 import os

http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/893da2ad/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index d8d7e82..5f1e3ed 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ import sys
 logger = logging.getLogger(__name__)
 
 # Kept manually in sync with airflow.__version__
-version = '1.7.1'
+version = '1.7.1.1'
 
 
 class Tox(TestCommand):