Updates for 4.2 release
diff --git a/CHANGES b/CHANGES
index 8f22042..dacf67b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,7 +4,7 @@
 * https://github.com/yaml/pyyaml/commits/
 * https://bitbucket.org/xi/pyyaml/commits/
 
-4.1 (2018-06-26)
+4.2 (2018-??-??)
 ----------------
 
 * https://github.com/yaml/pyyaml/pull/35  -- Some modernization of the test running
diff --git a/announcement.msg b/announcement.msg
index fdf49ac..24ca6eb 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -1,9 +1,9 @@
 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.1: YAML parser and emitter for Python
+Subject: [ANN] PyYAML-4.2: YAML parser and emitter for Python
 
 =======================
- Announcing PyYAML-4.1
+ Announcing PyYAML-4.2
 =======================
 
 A new MAJOR RELEASE of PyYAML is now available:
diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py
index 772b1d8..c3e505c 100644
--- a/lib/yaml/__init__.py
+++ b/lib/yaml/__init__.py
@@ -8,7 +8,7 @@
 from loader import *
 from dumper import *
 
-__version__ = '4.1'
+__version__ = '4.2'
 
 try:
     from cyaml import *
diff --git a/lib3/yaml/__init__.py b/lib3/yaml/__init__.py
index 994c599..f27f6ae 100644
--- a/lib3/yaml/__init__.py
+++ b/lib3/yaml/__init__.py
@@ -8,7 +8,7 @@
 from .loader import *
 from .dumper import *
 
-__version__ = '4.1'
+__version__ = '4.2'
 try:
     from .cyaml import *
     __with_libyaml__ = True
diff --git a/setup.py b/setup.py
index 5fdc761..7e32e89 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 
 NAME = 'PyYAML'
-VERSION = '4.1'
+VERSION = '4.2'
 DESCRIPTION = "YAML parser and emitter for Python"
 LONG_DESCRIPTION = """\
 YAML is a data serialization format designed for human readability