Skip to content

Commit 5d11f8b

Browse files
authored
RELEASE: v0.5.0 (#162)
1 parent 915aa4c commit 5d11f8b

File tree

5 files changed

+22
-7
lines changed

5 files changed

+22
-7
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ jobs:
7676
steps:
7777
- name: Checkout source
7878
uses: actions/checkout@v2
79-
- name: Set up Python 3.7
80-
uses: actions/setup-python@v2
79+
- name: Set up Python 3.8
80+
uses: actions/setup-python@v1
8181
with:
82-
python-version: 3.7
82+
python-version: "3.8"
8383
- name: Build package
8484
run: |
85-
pip install wheel
85+
pip install build
8686
git submodule update --init
87-
python setup.py sdist bdist_wheel
87+
python -m build
8888
- name: Publish
8989
uses: pypa/[email protected]
9090
with:

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# CHANGELOG
1+
# Changelog
2+
3+
## 0.5.0 - 2022-02-05
4+
5+
([full changelog](https://github.com/executablebooks/sphinx-copybutton/compare/v0.4.0...915aa4cf0b06f7b781bc4edfc204c62f2ce7cdb6))
6+
7+
This release updates the copy button design and behavior to match GitHub's design guide and button behavior. It also directly inserts the SVG instead of linking it via an `<img>` tag so that it can be styled more flexibly.
8+
9+
### Enhancements
10+
11+
- ENH: Directly add SVG instead of linking via IMG [#161](https://github.com/executablebooks/sphinx-copybutton/pull/161) ([@choldgraf](https://github.com/choldgraf))
12+
- ENH: Update copybutton image to match GitHub [#155](https://github.com/executablebooks/sphinx-copybutton/pull/155) ([@choldgraf](https://github.com/choldgraf))
13+
214

315
## 0.4.0 - 2021-07-03
416

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```{include} ../CHANGELOG.md
2+
```

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ See [](use.md) for more information about how to use `sphinx-copybutton`.
102102
use
103103
contribute/index
104104
reference/example
105+
changelog
105106
```
106107

107108
## Inspiration

sphinx_copybutton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33
from sphinx.util import logging
44

5-
__version__ = "0.4.0"
5+
__version__ = "0.5.0"
66

77
logger = logging.getLogger(__name__)
88

0 commit comments

Comments
 (0)