v1.0.0\!
diff --git a/TODO.md b/TODO.md
index 9db10db..37005ac 100644
--- a/TODO.md
+++ b/TODO.md
@@ -19,6 +19,7 @@
* Distributed scheduler
* Add decorator to timeout imports on master process [lib](https://github.com/pnpnpn/timeout-decorator)
* Raise errors when setting dependencies on task in foreign DAGs
+* Add an is_test flag to the run context
#### Wishlist
* Support for cron like synthax (0 * * * ) using croniter library
diff --git a/airflow/__init__.py b/airflow/__init__.py
index 30eb378..94f9c2c 100644
--- a/airflow/__init__.py
+++ b/airflow/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.7.0"
+__version__ = "1.0.0"
'''
Authentication is implemented using flask_login and different environments can
diff --git a/setup.py b/setup.py
index 3e0d689..d5bf3a0 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
# Kept manually in sync with airflow.__version__
-version = '0.7.0'
+version = '1.0.0'
doc = [
'sphinx>=1.2.3',