Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RLS: 0.5.2 changelog and version bump #190

Merged
merged 2 commits into from
Apr 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.5.2 - 2022-11-15

([full changelog](https://github.com/executablebooks/sphinx-copybutton/compare/v0.5.0...TODO))


- BUG: Don't exclude `.gp` class by default. This made excluding prompts more automatic, but broke the existing pattern-based prompt exclusion. [#188](https://github.com/executablebooks/sphinx-copybutton/pull/188) ([@rkdarst](https://github.com/rkdarst))
- MAINT: Add Sphinx Extension classifier (#189) [#189](https://github.com/executablebooks/sphinx-copybutton/pull/189) ([@jdillard](https://github.com/jdillard ))
- DOCS: Improve docs related to text exclusion [#187](https://github.com/executablebooks/sphinx-copybutton/pull/187) ([@rkdarst](https://github.com/rkdarst))

## v0.5.1 - 2022-11-15

([full changelog](https://github.com/executablebooks/sphinx-copybutton/compare/v0.5.0...e529aa0c7c0bf6ad880904f7a8876f33040e5c09))
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.5.1"
__version__ = "0.5.2"

logger = logging.getLogger(__name__)

Expand Down