Skip to content

Commit

Permalink
RELEASE: v0.5.0 (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed Feb 6, 2022
1 parent 915aa4c commit 5d11f8b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: "3.8"
- name: Build package
run: |
pip install wheel
pip install build
git submodule update --init
python setup.py sdist bdist_wheel
python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# CHANGELOG
# Changelog

## 0.5.0 - 2022-02-05

([full changelog](https://github.com/executablebooks/sphinx-copybutton/compare/v0.4.0...915aa4cf0b06f7b781bc4edfc204c62f2ce7cdb6))

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.

### Enhancements

- ENH: Directly add SVG instead of linking via IMG [#161](https://github.com/executablebooks/sphinx-copybutton/pull/161) ([@choldgraf](https://github.com/choldgraf))
- ENH: Update copybutton image to match GitHub [#155](https://github.com/executablebooks/sphinx-copybutton/pull/155) ([@choldgraf](https://github.com/choldgraf))


## 0.4.0 - 2021-07-03

Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
```{include} ../CHANGELOG.md
```
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ See [](use.md) for more information about how to use `sphinx-copybutton`.
use
contribute/index
reference/example
changelog
```

## Inspiration
Expand Down
2 changes: 1 addition & 1 deletion sphinx_copybutton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path
from sphinx.util import logging

__version__ = "0.4.0"
__version__ = "0.5.0"

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 5d11f8b

Please sign in to comment.