From 7ad822ab839440d225e73da4a2a2f65bd7a42a01 Mon Sep 17 00:00:00 2001 From: Yi Cheng Date: Fri, 11 Aug 2017 16:06:52 -0700 Subject: [PATCH] Prepare the 1.4.0.dev8 release (#4810) --- src/python/pants/notes/master.rst | 75 +++++++++++++++++++++++++++++++ src/python/pants/version.py | 2 +- 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/src/python/pants/notes/master.rst b/src/python/pants/notes/master.rst index 712e1a363ca..2e1a54c26be 100644 --- a/src/python/pants/notes/master.rst +++ b/src/python/pants/notes/master.rst @@ -4,6 +4,81 @@ Master Pre-Releases This document describes ``dev`` releases which occur weekly from master, and which do not undergo the vetting associated with ``stable`` releases. +1.4.0.dev8 (8/11/2017) +---------------------- + +New Features +~~~~~~~~~~~~ + +* Add support for junit (successful) test caching. (#4771) + `PR #4771 `_ + +API Changes +~~~~~~~~~~~ + +* Kill custom binaries.baseurls. (#4809) + `PR #4809 `_ + +* Partition and pass JVM options to scalafmt (#4774) + `PR #4774 `_ + +Bugfixes +~~~~~~~~ + +* [python-repl] pass env through to repl (#4808) + `PR #4808 `_ + +* Switch default binary-baseurls to s3 (#4806) + `PR #4806 `_ + +* Work around bintray outage. (#4801) + `PR #4801 `_ + +* Fix has_sources. (#4792) + `PR #4792 `_ + +Refactoring, Improvements, and Tooling +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +* Zinc 1.0.0-RC3 memory and output improvements (#4807) + `PR #4807 `_ + +* Improve performance by not re-fingerprinting codegen'd sources. (#4789) + `PR #4789 `_ + +* Add per-target zinc compile stats (#4790) + `PR #4790 `_ + +* Add support for publishing native-engine to s3. (#4804) + `PR #4804 `_ + +* Introduce a loose `Files` target. (#4798) + `PR #4798 `_ + +* Upgrade default go to 1.8.3. (#4799) + `PR #4799 `_ + +* Deprecate unused `go_thrift_library.import_path`. (#4794) + `PR #4794 `_ + +* Cleanup cpp targets. (#4793) + `PR #4793 `_ + +* Simplify `_validate_target_representation_args`. (#4791) + `PR #4791 `_ + +* Init the native engine from bootstrap options. (#4787) + `PR #4787 `_ + +* [pantsd] Add faulthandler support for stacktrace dumps. (#4784) + `PR #4784 `_ + +* Cleanup CI deprecation warnings. (#4781) + `PR #4781 `_ + +* Kill `-XX:-UseSplitVerifier`. (#4777) + `PR #4777 `_ + 1.4.0.dev7 (7/28/2017) ---------------------- diff --git a/src/python/pants/version.py b/src/python/pants/version.py index 914ce767877..504f0de332f 100644 --- a/src/python/pants/version.py +++ b/src/python/pants/version.py @@ -8,6 +8,6 @@ from packaging.version import Version -VERSION = '1.4.0.dev7' +VERSION = '1.4.0.dev8' PANTS_SEMVER = Version(VERSION)