From 237e6a6e8b1c41d58a38426d92dac96f878f2159 Mon Sep 17 00:00:00 2001 From: Yi Cheng Date: Sat, 26 Sep 2020 14:01:50 -0700 Subject: [PATCH] Prep 2.0.0b2 (#10866) # Rust tests and lints will be skipped. Delete if not intended. [ci skip-rust] --- src/python/pants/VERSION | 2 +- src/python/pants/notes/2.0.x.rst | 50 ++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/python/pants/VERSION b/src/python/pants/VERSION index 6d984fb9cb6..0f3f84ca6ce 100644 --- a/src/python/pants/VERSION +++ b/src/python/pants/VERSION @@ -1 +1 @@ -2.0.0b1 +2.0.0b2 diff --git a/src/python/pants/notes/2.0.x.rst b/src/python/pants/notes/2.0.x.rst index 354bbba92ff..c96677124a9 100644 --- a/src/python/pants/notes/2.0.x.rst +++ b/src/python/pants/notes/2.0.x.rst @@ -5,6 +5,56 @@ This document describes releases leading up to the ``2.0.x`` ``stable`` series. See https://www.pantsbuild.org/v2.0/docs/release-notes-2-0 for an overview of the changes in this release. +2.0.0b2 (9/25/2020) +------------------- + +API Changes +~~~~~~~~~~~ + +* Remove .*/ from --build-ignore defaults (#10856) + `PR #10856 `_ + +New Features +~~~~~~~~~~~~ +* Partition MyPy based on interpreter constraints (#10817) + `PR #10817 `_ + +Bugfixes +~~~~~~~~ + +* Fix dependency inference AST parsing to include file names (#10857) + `PR #10857 `_ + +* Validate the names of directory children, and normalize output directory/file names (#10850) + `PR #10850 `_ + +* Fix empty key for global options in run tracker (#10807) + `PR #10807 `_ + +* Locate bash before using it to locate BinaryPaths for other tools (#10858) + `PR #10858 `_ + +Refactoring, Improvements, and Tooling +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +* Move `PantsEnvironment` into `SessionValues` (#10862) + `PR #10862 `_ + +* Delete binaries/ and net/. (#10861) + `PR #10861 `_ + +* Add `RuleRunner.set_options()` (#10859) + `PR #10859 `_ + +* Improve support of MyPy requirements when Python 2 used (#10853) + `PR #10853 `_ + +* A script to download rust build helper binaries. (#10851) + `PR #10851 `_ + +* Hotfix merge conflict in MyPy tests. (#10867) + `PR #10867 `_ + 2.0.0b1 (9/23/2020) -------------------