<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git, branch v23.2.1</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Bump version: 23.2.0 → 23.2.1</title>
<updated>2016-07-02T16:21:44+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-02T16:21:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=fece3b75874e79f01cecedd41eb035f180400a18'/>
<id>fece3b75874e79f01cecedd41eb035f180400a18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2016-07-02T16:16:19+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-02T16:16:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=cbc3e03505a6c2a1893312c0ec555b2dec615000'/>
<id>cbc3e03505a6c2a1893312c0ec555b2dec615000</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added tag v23.2.0 for changeset 65b3fe899db4</title>
<updated>2016-07-02T16:09:58+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-02T16:09:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=2370ce3abb2f92e84948aaafa398ce56587d7bb2'/>
<id>2370ce3abb2f92e84948aaafa398ce56587d7bb2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version: 23.1.0 → 23.2.0</title>
<updated>2016-07-02T16:09:58+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-02T16:09:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=22da89cd92578bc5af6375276a6b3f2c5bd98fb1'/>
<id>22da89cd92578bc5af6375276a6b3f2c5bd98fb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2016-07-02T14:17:26+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-02T14:17:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=cb88c78645a37ff81efa440f82e3df234bf2c9cf'/>
<id>cb88c78645a37ff81efa440f82e3df234bf2c9cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #623 from haypo/read_u</title>
<updated>2016-07-01T15:39:06+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-07-01T15:39:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=929b72abe7de68a1dd5584052b2359dd1e30d5c9'/>
<id>929b72abe7de68a1dd5584052b2359dd1e30d5c9</id>
<content type='text'>
Don't use deprecated 'U' flag to read manifest</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't use deprecated 'U' flag to read manifest</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use deprecated 'U' flag to read manifest</title>
<updated>2016-06-29T08:22:12+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2016-06-29T08:22:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=4720c481c62d5cc0a40dd212a32c641125be8e9c'/>
<id>4720c481c62d5cc0a40dd212a32c641125be8e9c</id>
<content type='text'>
The universal newlines mode ('U' flag) is deprecated since Python
3.4. It only replaces "\r\n" with "\n", but it doesn't split lines at
"\r" (Mac newline). In practice, the flag was useless, the
sdist.read_manifest() method already uses line.strip() and so removes
newline characters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The universal newlines mode ('U' flag) is deprecated since Python
3.4. It only replaces "\r\n" with "\n", but it doesn't split lines at
"\r" (Mac newline). In practice, the flag was useless, the
sdist.read_manifest() method already uses line.strip() and so removes
newline characters.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #620 from benoit-pierre/patch-1</title>
<updated>2016-06-25T17:59:49+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-06-25T17:59:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=ebf30b69931a41ab4ff709a38bd855b5777036d3'/>
<id>ebf30b69931a41ab4ff709a38bd855b5777036d3</id>
<content type='text'>
readme: update links to documentation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
readme: update links to documentation</pre>
</div>
</content>
</entry>
<entry>
<title>readme: update links to documentation</title>
<updated>2016-06-25T12:48:42+00:00</updated>
<author>
<name>Benoit Pierre</name>
<email>benoit.pierre@gmail.com</email>
</author>
<published>2016-06-25T12:38:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=5d8c17c312e4586ea7a37673f147f9e9622617c7'/>
<id>5d8c17c312e4586ea7a37673f147f9e9622617c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #618 from gitter-badger/gitter-badge</title>
<updated>2016-06-24T14:43:13+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-06-24T14:43:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=6cf6ce78b1c42c500b938f6de03af1626b1b2330'/>
<id>6cf6ce78b1c42c500b938f6de03af1626b1b2330</id>
<content type='text'>
Add a Gitter chat badge to README.rst</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a Gitter chat badge to README.rst</pre>
</div>
</content>
</entry>
</feed>
