From ce0cbf90c543f342a67a84078a51a20ee77d9b1d Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Sat, 3 Jul 2021 09:48:08 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ sphinx_copybutton/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a98e147..6c7d909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.4.0 - 2021-07-03 + +### Enhancements ✨ +* The Copy Button UI/UX is now inspired from the recent GitHub copy button updates. [#133](https://github.com/executablebooks/sphinx-copybutton/pull/133) + ## 0.3.2 - 2021-06-11 ### Enhancements ✨ diff --git a/sphinx_copybutton/__init__.py b/sphinx_copybutton/__init__.py index cb8c6f0..1597466 100644 --- a/sphinx_copybutton/__init__.py +++ b/sphinx_copybutton/__init__.py @@ -2,7 +2,7 @@ from pathlib import Path from sphinx.util import logging -__version__ = "0.3.3" +__version__ = "0.4.0" logger = logging.getLogger(__name__)