Skip to content

Commit

Permalink
Bump version number and release 4.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Feb 8, 2022
1 parent d6efd5d commit cc2adbd
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ for setting up [Jekyll], but the main command is this:
cd docs
bundle exec jekyll serve

You can also run the `html/serve.sh` script to do the same thing.

[Jekyll]: https://help.github.com/en/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll

## Adding Support For a New Editor ##
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ Live Coding in Python
[![Code Coverage]][codecov]
[![PyCharm downloads]][pycharm plugin]
[![Sublime downloads]][sublime plugin]
[![Package Version]][pypi]
[![space-tracer downloads]][space-tracer]

Visualize your Python code while you type it in PyCharm, Emacs, Sublime Text, or
even your browser.

[Package Version]: https://badge.fury.io/py/space-tracer.svg
[pypi]: https://pypi.org/project/space-tracer/
[Python Build Status]: https://github.com/donkirkby/live-py-plugin/actions/workflows/py-build.yml/badge.svg?branch=master
[HTML Build Status]: https://github.com/donkirkby/live-py-plugin/actions/workflows/html-build.yml/badge.svg?branch=master
[actions]: https://github.com/donkirkby/live-py-plugin/actions
Expand All @@ -22,6 +20,8 @@ even your browser.
[pycharm plugin]: https://plugins.jetbrains.com/plugin/9742
[Sublime downloads]: https://img.shields.io/packagecontrol/dt/Live%20Coding%20in%20Python?label=Sublime%20%E2%86%93
[sublime plugin]: https://packagecontrol.io/packages/Live%20Coding%20in%20Python
[space-tracer downloads]: https://static.pepy.tech/personalized-badge/space-tracer?left_color=grey&right_color=brightgreen&left_text=space-tracer%20%E2%86%93
[space-tracer]: https://pypi.org/project/space-tracer/

To see how to use one of the Live Coding in Python plugins, watch the
[demo video][video] or read the getting started pages for [PyCharm], [Emacs],
Expand Down
2 changes: 1 addition & 1 deletion docs/demo/pyodide/packages.json

Large diffs are not rendered by default.

Binary file modified docs/demo/pyodide/space-tracer.data
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/demo/pyodide/space-tracer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions docs/sublime-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"name": "Live Coding in Python",
"details": "https://github.com/donkirkby/live-py-plugin",
"releases": [
{
"version": "4.8.0",
"url": "https://donkirkby.github.io/live-py-plugin/sublime-package/python_live_coding_v4.8.0.zip",
"date": "2022-02-08 01:43:49",
"sublime_text": ">=3000"
},
{
"version": "4.7.0",
"url": "https://donkirkby.github.io/live-py-plugin/sublime-package/python_live_coding_v4.7.0.zip",
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions html/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package:
name: space-tracer
version: 4.7.0
version: 4.8.0
source:
path: space_tracer-4.7.0
path: space_tracer-4.8.0
test:
imports:
- space-tracer
2 changes: 1 addition & 1 deletion plugin/PySrc/space_tracer/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Don't put any code in here, because it must be safe to execute in setup.py. """

__title__ = 'space_tracer' # => name in setup.py
__version__ = '4.7.0'
__version__ = '4.8.0'
__author__ = "Don Kirkby"
__author_email__ = "[email protected]"
__description__ = "Trade time for space when debugging your code."
Expand Down
4 changes: 2 additions & 2 deletions pycharm/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>io.github.donkirkby.livepycharm</id>
<name>Live Coding in Python</name>
<version>4.7.0</version>
<version>4.8.0</version>
<vendor url="https://donkirkby.github.io/live-py-plugin">Don Kirkby</vendor>

<description><![CDATA[
Expand All @@ -10,7 +10,7 @@
]]></description>

<change-notes><![CDATA[
Fill in several missing turtle methods.
Bug fixes in colour handling for turtle graphics.
]]>
</change-notes>

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@
"Development Status :: 5 - Production/Stable",
"Environment :: Console"
],
project_urls={
'Bug Reports': 'https://github.com/donkirkby/live-py-plugin/issues',
'Source': 'https://github.com/donkirkby/live-py-plugin'}
)

0 comments on commit cc2adbd

Please sign in to comment.