Skip to content

Commit e2807f0

Browse files
authored
Prepare the 1.13.0.dev1 release. (#6850)
1 parent 7d95d9a commit e2807f0

File tree

4 files changed

+56
-25
lines changed

4 files changed

+56
-25
lines changed

src/python/pants/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.0.dev0
1+
1.13.0.dev1

src/python/pants/base/payload_field.py

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from future.utils import PY3
1212
from twitter.common.collections import OrderedSet
1313

14-
from pants.base.deprecated import deprecated
1514
from pants.base.hash_utils import stable_json_hash
1615
from pants.util.meta import AbstractClass
1716
from pants.util.strutil import ensure_binary
@@ -186,25 +185,3 @@ def value(self):
186185

187186
def _compute_fingerprint(self):
188187
return stable_json_hash(self._underlying)
189-
190-
191-
class SetOfPrimitivesField(PayloadField):
192-
"""A general field for order-insensitive sets of primitive, ordered types.
193-
194-
As long as the underlying elements are JSON representable and have a consistent sort order,
195-
their hash can be stably inferred.
196-
197-
:API: public
198-
"""
199-
200-
@deprecated(removal_version='1.11.0.dev0',
201-
hint_message='Use PrimitivesSetField, which preserves `None`/unset fields.')
202-
def __init__(self, underlying=None):
203-
self._underlying = tuple(sorted(set(underlying or [])))
204-
205-
@property
206-
def value(self):
207-
return self._underlying
208-
209-
def _compute_fingerprint(self):
210-
return stable_json_hash(self._underlying)

src/python/pants/notes/master.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,60 @@ Master Pre-Releases
44
This document describes ``dev`` releases which occur weekly from master, and which do
55
not undergo the vetting associated with ``stable`` releases.
66

7+
1.13.0.dev1 (11/30/2018)
8+
------------------------
9+
10+
New features
11+
~~~~~~~~~~~~
12+
13+
* Add --remote-execution-process-cache-namespace (#6809)
14+
`PR #6809 <https://github.com/pantsbuild/pants/pull/6809>`_
15+
16+
Bugfixes
17+
~~~~~~~~
18+
19+
* Fix unused error value. (#6834)
20+
`PR #6834 <https://github.com/pantsbuild/pants/pull/6834>`_
21+
22+
* [deferred-sources] fix glob expansion issue in deferred sources mappe… (#6824)
23+
`PR #6824 <https://github.com/pantsbuild/pants/pull/6824>`_
24+
25+
* Fix a bug when selecting interpreters with no constraints at all. (#6822)
26+
`PR #6822 <https://github.com/pantsbuild/pants/pull/6822>`_
27+
28+
* Pin a conan dep that was floating to a version that was not compatible with python 2. (#6825)
29+
`PR #6825 <https://github.com/pantsbuild/pants/pull/6825>`_
30+
31+
Refactoring, Improvements, and Tooling
32+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33+
34+
* [docs] add language about flaky tests / issues for them (#6837)
35+
`PR #6837 <https://github.com/pantsbuild/pants/pull/6837>`_
36+
37+
* Include uname in rust cache key (#6842)
38+
`PR #6842 <https://github.com/pantsbuild/pants/pull/6842>`_
39+
40+
* Only build fs_util as part of dryrun (#6835)
41+
`PR #6835 <https://github.com/pantsbuild/pants/pull/6835>`_
42+
43+
* ci.sh can run cargo-audit (#6549)
44+
`PR #6549 <https://github.com/pantsbuild/pants/pull/6549>`_
45+
46+
* Run cargo clippy in pre-commit (#6833)
47+
`PR #6833 <https://github.com/pantsbuild/pants/pull/6833>`_
48+
49+
* Statically link openssl for reqwest (#6816)
50+
`PR #6816 <https://github.com/pantsbuild/pants/pull/6816>`_
51+
52+
* Use pantsbuild.org not example.com (#6826)
53+
`PR #6826 <https://github.com/pantsbuild/pants/pull/6826>`_
54+
55+
* Leverage default target globs. (#6819)
56+
`PR #6819 <https://github.com/pantsbuild/pants/pull/6819>`_
57+
58+
* Make PythonInterpreterCache into a subsystem. (#6765)
59+
`PR #6765 <https://github.com/pantsbuild/pants/pull/6765>`_
60+
761

862
1.13.0.dev0 (11/26/2018)
963
------------------------

tests/python/pants_test/base_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242

4343
# Fix this during a dev release
44-
deprecated_module('1.13.0.dev1', 'Use pants_test.test_base instead')
44+
deprecated_module('1.13.0.dev2', 'Use pants_test.test_base instead')
4545

4646

4747
class TestGenerator(object):

0 commit comments

Comments
 (0)