From 77c7393988a4079204123bd460adbce30ee271a8 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Fri, 17 Feb 2017 19:49:56 -0700 Subject: [PATCH] Prepare the 1.3.0.dev10 release. (#4267) --- .mailmap | 1 + CONTRIBUTORS.md | 1 + src/python/pants/notes/master.rst | 97 +++++++++++++++++++++++++++++++ src/python/pants/version.py | 2 +- 4 files changed, 100 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 0b89eca5f55..1506d9e2370 100644 --- a/.mailmap +++ b/.mailmap @@ -34,3 +34,4 @@ Yi Cheng Fiona Condone Yujie Chen Ny Saechao +Roger Jiang diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e295568dedd..5e10b4cdeb2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -55,6 +55,7 @@ Created by running `build-support/bin/contributors.sh`. + James Mouradian + Jason Jackson + Jeff Jenkins ++ Jeremy Hintz + Jessica Rosenfield + Jin Feng + Joe Crobak diff --git a/src/python/pants/notes/master.rst b/src/python/pants/notes/master.rst index 50ce4ec45b7..d3bfb662cf9 100644 --- a/src/python/pants/notes/master.rst +++ b/src/python/pants/notes/master.rst @@ -4,6 +4,103 @@ 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.3.0.dev10 (2/17/2017) +----------------------- + +Bugfixes +~~~~~~~~ + +* Treat PythonTarget dependencies on Resources targets appropriately. (#4249) + `PR #4249 `_ + +* [engine] fix address node creation in v2 build graph; fix filedeps (#4235) + `PR #4235 `_ + +* Repair `Broken pipe` on pantsd thin client execution when piped to a non-draining reader. (#4230) + `PR #4230 `_ + +API Changes +~~~~~~~~~~~ + +* Deprecate Python target resources= and resource_targets=. (#4251) + `PR #4251 `_ + +* Deprecate use of resources= in JVM targets. (#4248) + `PR #4248 `_ + +New Features +~~~~~~~~~~~~ + +* New python repl task. (#4219) + `PR #4219 `_ + +* Add a node bundle goal (#4212) + `PR #4212 `_ + +* A task to generate Python code from ANTLR3 grammars. + `PR #4206 `_ + +Documentation +~~~~~~~~~~~~~ + +* Fixing grammatical error in why use pants doc page (#4239) + `PR #4239 `_ + +Refactoring, Improvements, and Tooling +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +* [engine] Make Graph.get generic and make Externs static (#4261) + `PR #4261 `_ + +* A Dockerfile for building a pants development image. (#4260) + `PR #4260 `_ + +* [engine] Use Value in invoke_runnable as the function instead of Function (#4258) + `PR #4258 `_ + +* [engine] `Storage` clean ups (#4257) + `PR #4257 `_ + +* [engine] remove Field type in favor of using String directly (#4256) + `PR #4256 `_ + +* Remove our use of resources= and resource_targets= in python targets. (#4250) + `PR #4250 `_ + +* Get rid of resources=[] stanzas in our JVMTargets. (#4247) + `PR #4247 `_ + +* Change engine visual graph layout from LR to TB (#4245) + `PR #4245 `_ + +* Simplify ci script test running stanzas. (#4209) + `PR #4209 `_ + +* [engine] Porting validation to Rust pt ii (#4243) + `PR #4243 `_ + +* Require dev-suffixed deprecation versions (#4216) + `PR #4216 `_ + +* [engine] Begin port of engine rule graph validation to Rust (#4227) + `PR #4227 `_ + +* Derive object id used in the native context from object's content (#4233) + `PR #4233 `_ + +* [engine] Use futures for scheduling (#4221) + `PR #4221 `_ + +* Add a 'current' symlink to the task-versioned prefix of the workdir. (#4220) + `PR #4220 `_ + +* Improve BUILD file matching in the v2 path. (#4226) + `PR #4226 `_ + +* Batch address injections in dependees task. (#4222) + `PR #4222 `_ + + 1.3.0.dev9 (1/27/2017) ---------------------- diff --git a/src/python/pants/version.py b/src/python/pants/version.py index 7373862152e..4fef693b270 100644 --- a/src/python/pants/version.py +++ b/src/python/pants/version.py @@ -8,6 +8,6 @@ from packaging.version import Version -VERSION = '1.3.0.dev9' +VERSION = '1.3.0.dev10' PANTS_SEMVER = Version(VERSION)