Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions .circleci/config.yml

This file was deleted.

26 changes: 2 additions & 24 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
# Instructions for creating a new release

Spinx-Toggle is [hosted on the pypi repository](https://pypi.org/project/sphinx-togglebutton/).
To create a new release of Sphinx-Togglebutton, you need to do these things:

## To create the release

To create a new release, [open an issue](https://github.com/ExecutableBookProject/sphinx-togglebutton/issues/new) to keep
track of the to-do list for the release. Copy/paste the following markdown into the issue
and check off the boxes as you complete items:


```
- [ ] Ensure that the [Sphinx-Togglebutton version number](https://github.com/ExecutableBookProject/sphinx-togglebutton/blob/master/sphinx_togglebutton/__init__.py)
is correct, and remove the `dev0` part of the version number.
Make a PR with the new number and merge into master.
- [ ] [Create a new release](https://github.com/executablebookproject/sphinx-togglebutton/releases).
- The tag should be the current sphinx-togglebutton version number.
- Add a description of what has changed since it was last-used. You can use [the `github-activity` tool](https://github.com/choldgraf/github-activity)
to make this easier if you wish.
- [ ] Creating a new release should [trigger GitHub action to push the release to PyPI](https://github.com/ExecutableBookProject/sphinx-togglebutton/actions).
The [action configuration is here](https://github.com/ExecutableBookProject/sphinx-togglebutton/blob/master/.github/workflows/tests.yml).
- [ ] Confirm that the new version of Sphinx-Togglebutton [is posted to pypi](https://pypi.org/project/sphinx-togglebutton/)
- [ ] Bump the [Sphinx-Togglebutton version number](https://github.com/ExecutableBookProject/sphinx-togglebutton/blob/master/sphinx_togglebutton/__init__.py) to
the next minor (or major) release and append `dev0` to the end.
- [ ] Celebrate! You've just released a new version of Sphinx-Togglebutton!
```
To create a new release of Sphinx-Togglebutton,
[follow the ExecutableBooks release instructions](https://github.com/executablebooks/.github/blob/master/CONTRIBUTING.md#releases-and-change-logs)
2 changes: 1 addition & 1 deletion sphinx_togglebutton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from docutils.parsers.rst import Directive, directives
from docutils import nodes

__version__ = "0.2.1dev0"
__version__ = "0.2.0"


def st_static_path(app):
Expand Down