Updates for 5.1b7 release
diff --git a/CHANGES b/CHANGES
index 822e508..04834de 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,7 +4,7 @@
 * https://github.com/yaml/pyyaml/commits/
 * https://bitbucket.org/xi/pyyaml/commits/
 
-5.1 (2019-02-24)
+5.1b7 (2019-03-08)
 ----------------
 
 * https://github.com/yaml/pyyaml/pull/35  -- Some modernization of the test running
diff --git a/announcement.msg b/announcement.msg
index 584990f..6d99639 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -3,7 +3,7 @@
 Subject: [ANN] PyYAML-5.1: YAML parser and emitter for Python
 
 =======================
- Announcing PyYAML-5.1
+ Announcing PyYAML-5.1b7 (Second beta release)
 =======================
 
 A new MAJOR RELEASE of PyYAML is now available:
diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py
index e7a419d..e1d4622 100644
--- a/lib/yaml/__init__.py
+++ b/lib/yaml/__init__.py
@@ -8,7 +8,7 @@
 from loader import *
 from dumper import *
 
-__version__ = '5.1'
+__version__ = '5.1b7'
 
 try:
     from cyaml import *
diff --git a/lib3/yaml/__init__.py b/lib3/yaml/__init__.py
index 5df0bb5..ffad1b1 100644
--- a/lib3/yaml/__init__.py
+++ b/lib3/yaml/__init__.py
@@ -8,7 +8,7 @@
 from .loader import *
 from .dumper import *
 
-__version__ = '5.1'
+__version__ = '5.1b7'
 try:
     from .cyaml import *
     __with_libyaml__ = True
diff --git a/setup.py b/setup.py
index f40a5c4..6b27ccf 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 
 NAME = 'PyYAML'
-VERSION = '5.1'
+VERSION = '5.1b7'
 DESCRIPTION = "YAML parser and emitter for Python"
 LONG_DESCRIPTION = """\
 YAML is a data serialization format designed for human readability