Skip to content

Commit

Permalink
Changes for 4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored and ingydotnet committed Jun 26, 2018
1 parent 4c2e993 commit d3eb7da
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 22 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Expand Up @@ -4,8 +4,8 @@ For a complete changelog, see:
* https://github.com/yaml/pyyaml/commits/
* https://bitbucket.org/xi/pyyaml/commits/

4.01 (2018-06-26)
-----------------
4.1 (2018-06-26)
----------------

* https://github.com/yaml/pyyaml/pull/35 -- Some modernization of the test running
* https://github.com/yaml/pyyaml/pull/42 -- Install tox in a virtualenv
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -33,7 +33,9 @@ testall:
${PYTHON} setup.py test

dist:
${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
@# No longer uploading a zip file to pypi
@# ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
${PYTHON} setup.py --with-libyaml sdist --formats=gztar

windist:
${PYTHON} setup.py --with-libyaml bdist_wininst
Expand Down
11 changes: 8 additions & 3 deletions README
Expand Up @@ -24,11 +24,16 @@ For more information, check the PyYAML homepage:
For PyYAML tutorial and reference, see:
'http://pyyaml.org/wiki/PyYAMLDocumentation'.

Post your questions and opinions to the YAML-Core mailing list:
Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.

You may also use the YAML-Core mailing list:
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.

Submit bug reports and feature requests to the PyYAML bug tracker:
'https://github.com/yaml/pyyaml/issues'.

PyYAML is written by Kirill Simonov <xi@resolvent.net>. It is released
under the MIT license. See the file LICENSE for more details.
The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
It is currently maintained by the YAML and Python communities.

PyYAML is released under the MIT license.
See the file LICENSE for more details.
38 changes: 25 additions & 13 deletions announcement.msg
@@ -1,14 +1,26 @@
From: Ingy döt Net <ingy@ingy.net>
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
Subject: [ANN] PyYAML-4.01: YAML parser and emitter for Python
Subject: [ANN] PyYAML-4.1: YAML parser and emitter for Python

========================
Announcing PyYAML-4.01
========================
=======================
Announcing PyYAML-4.1
=======================

A new release of PyYAML is now available:
A new MAJOR RELEASE of PyYAML is now available:
https://pypi.org/project/PyYAML/

https://pypi.org/project/PyYAML/
This is the first release of PyYAML under a new maintenance team. In August
2016, maintenance of PyYAML and LibYAML was turned over from the original
author, Kirill Simonov, to Ian Cordasco and Ingy döt Net.

The canonical source repo moved:

from: https://bitbucket.org/xi/pyyaml/
to: https://github.com/yaml/pyyaml

The PyYAML project is now maintained by the YAML and Python communities.
Planning happens on the #yaml-dev, #pyyaml and #libyaml IRC channels on
irc.freenode.net.


Changes
Expand Down Expand Up @@ -40,10 +52,9 @@ Resources
PyYAML IRC Channel: #pyyaml on irc.freenode.net
PyYAML homepage: https://github.com/yaml/pyyaml
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
Source and binary installers: https://pypi.python.org/pypi/PyYAML/3.12

PyYAML GitHub repository: https://github.com/yaml/pyyaml/
Submit a bug report: https://github.com/yaml/pyyaml/issues
Source and binary installers: https://pypi.org/project/PyYAML/
GitHub repository: https://github.com/yaml/pyyaml/
Bug tracking: https://github.com/yaml/pyyaml/issues

YAML homepage: http://yaml.org/
YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
Expand Down Expand Up @@ -92,12 +103,12 @@ Maintainers

The following people are responsible for maintaining PyYAML:

* Kirill Simonov
* Ian Cordasco
* Ingy döt Net
* Donald Stufft
* Ian Cordasco
* Tina Mueller
* Alex Gaynor
* Donald Stufft
* Matt Davis

and many thanks to all who have contribributed!
See: https://github.com/yaml/pyyaml/pulls
Expand All @@ -113,3 +124,4 @@ The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
It is currently maintained by the YAML and Python communities.

PyYAML is released under the MIT license.
See the file LICENSE for more details.
2 changes: 1 addition & 1 deletion lib/yaml/__init__.py
Expand Up @@ -8,7 +8,7 @@
from loader import *
from dumper import *

__version__ = '4.01'
__version__ = '4.1'

try:
from cyaml import *
Expand Down
2 changes: 1 addition & 1 deletion lib3/yaml/__init__.py
Expand Up @@ -8,7 +8,7 @@
from .loader import *
from .dumper import *

__version__ = '4.01'
__version__ = '4.1'
try:
from .cyaml import *
__with_libyaml__ = True
Expand Down
3 changes: 2 additions & 1 deletion setup.py
@@ -1,6 +1,6 @@

NAME = 'PyYAML'
VERSION = '4.01'
VERSION = '4.1'
DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability
Expand Down Expand Up @@ -295,4 +295,5 @@ def run(self):

distclass=Distribution,
cmdclass=cmdclass,
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
)

0 comments on commit d3eb7da

Please sign in to comment.