From 135ab5cf71ed731fc9fa0653051e7d4884a3652f Mon Sep 17 00:00:00 2001
From: Victor Zverovich <victor.zverovich@gmail.com>
Date: Wed, 20 Dec 2017 08:19:43 -0800
Subject: [PATCH] Update version

---
 ChangeLog.rst | 4 ++--
 doc/build.py  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ChangeLog.rst b/ChangeLog.rst
index 7d9a00e47536..ce0406a9d142 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,5 +1,5 @@
-4.1.0 - TBD
------------
+4.1.0 - 2017-12-20
+------------------
 
 * Added ``fmt::to_wstring()`` in addition to ``fmt::to_string()`` (`#559 <https://github.com/fmtlib/fmt/pull/559>`_). Thanks `@alabuzhev (Alex Alabuzhev) <https://github.com/alabuzhev>`_.
 
diff --git a/doc/build.py b/doc/build.py
index 22e734cab6a0..cb8d0c3c81ac 100755
--- a/doc/build.py
+++ b/doc/build.py
@@ -6,7 +6,7 @@
 from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
 from distutils.version import LooseVersion
 
-versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0']
+versions = ['1.0.0', '1.1.0', '2.0.0', '3.0.2', '4.0.0', '4.1.0']
 
 def pip_install(package, commit=None, **kwargs):
   "Install package using pip."