diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f5594a8e20c555bca6edf82d4f17a05e842fcad..3554709516225cdfd57935696aa6c6cc87daca9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Python Buildpack Changelog
 
+## Unreleased
+
+Added automatic configuration of Gunicorn's `FORWARDED_ALLOW_IPS` setting.
+
+Improved detection of libffi dependency when using bcrypt via `Django[bcrypt]`.
+
+Improved GDAL support.
+
+- GDAL dependency detection now checks for pygdal and is case-insensitive.
+- The vendored GDAL library has been updated to 1.11.1.
+- GDAL bootstrapping now also installs the GEOS and Proj.4 libraries.
+
+Updated pip to 8.1.0 and setuptools to 20.2.2.
+
 ## v77 (2016-02-10)
 
 Improvements to warnings and minor bugfix.
diff --git a/bin/compile b/bin/compile
index 1d2d653518fa362cb8bf943caed037e0d1162e35..035b36e4726937f1072f450f4df63b284ffd7237 100755
--- a/bin/compile
+++ b/bin/compile
@@ -34,8 +34,8 @@ LEGACY_TRIGGER="lib/python2.7"
 DEFAULT_PYTHON_VERSION="python-2.7.11"
 DEFAULT_PYTHON_STACK="cedar-14"
 PYTHON_EXE="/app/.heroku/python/bin/python"
-PIP_VERSION="8.0.2"
-SETUPTOOLS_VERSION="19.6"
+PIP_VERSION="8.1.0"
+SETUPTOOLS_VERSION="20.2.2"
 
 # Common Problem Warnings
 export WARNINGS_LOG=$(mktemp)
diff --git a/vendor/pip-8.0.2.tar.gz b/vendor/pip-8.0.2.tar.gz
deleted file mode 100644
index 6371c94936ea73f67652ed1e4a0d28433e3fa8d9..0000000000000000000000000000000000000000
Binary files a/vendor/pip-8.0.2.tar.gz and /dev/null differ
diff --git a/vendor/pip-8.1.0.tar.gz b/vendor/pip-8.1.0.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..185eb973493631c06118e707811388b02f29fed5
Binary files /dev/null and b/vendor/pip-8.1.0.tar.gz differ
diff --git a/vendor/setuptools-19.6.tar.gz b/vendor/setuptools-19.6.tar.gz
deleted file mode 100644
index e5dffe5b466b7ff58838fefe9a93992b63ecd763..0000000000000000000000000000000000000000
Binary files a/vendor/setuptools-19.6.tar.gz and /dev/null differ
diff --git a/vendor/setuptools-20.2.2.tar.gz b/vendor/setuptools-20.2.2.tar.gz
new file mode 100644
index 0000000000000000000000000000000000000000..9a6904ab743dde52ba01a79ce6b7c7ee58e2c786
Binary files /dev/null and b/vendor/setuptools-20.2.2.tar.gz differ