Skip to content

Commit

Permalink
Bump version number and release v4.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Apr 13, 2021
1 parent 67fbade commit 26d5101
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

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

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ The details are at [packaging.python.org], but the main steps are:
1. Update the version number in `about.py` and development status in `setup.py`.
2. Activate the latest Python's virtual environment.

source .tox/py38/bin/activate
source .tox/py39/bin/activate

3. Install the build tools.

Expand Down
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.4.0",
"url": "https://donkirkby.github.io/live-py-plugin/sublime-package/python_live_coding_v4.4.0.zip",
"date": "2021-04-13 01:58:21",
"sublime_text": ">=3000"
},
{
"version": "4.3.0",
"url": "https://donkirkby.github.io/live-py-plugin/sublime-package/python_live_coding_v4.3.0.zip",
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion emacs-live-py-mode/live-py-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Don Kirkby http://donkirkby.github.io
;; Keywords: live coding
;; URL: http://donkirkby.github.io/live-py-plugin/
;; Version: 4.1
;; Version: 4.4
;; Package-Requires: ((emacs "24.3"))

;; This program is distributed under the MIT License
Expand Down
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.3.0'
__version__ = '4.4.0'
__author__ = "Don Kirkby"
__author_email__ = "[email protected]"
__description__ = "Trade time for space when debugging your code."
Expand Down
2 changes: 1 addition & 1 deletion pycharm/livepy.iml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<excludeFolder url="file://$MODULE_DIR$/../feature" />
<excludeFolder url="file://$MODULE_DIR$/../build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="IntelliJ IDEA IU-201.7846.76" jdkType="IDEA JDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library" scope="PROVIDED">
<library>
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.3.0</version>
<version>4.4.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[
Support Python 3.9 and disable soft wrapping in display window.
Support Python 3.10 and improve @traced decorator.
]]>
</change-notes>

Expand Down
3 changes: 1 addition & 2 deletions test/PySrc/pytest.iml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@
<content url="file://$MODULE_DIR$/tools">
<sourceFolder url="file://$MODULE_DIR$/tools" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="Python 3.9 (live-py-plugin)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="livepy" />
</component>
<component name="PackageRequirementsSettings">
<option name="requirementsPath" value="" />
</component>
<component name="TestRunnerService">
<option name="projectConfiguration" value="pytest" />
<option name="PROJECT_TEST_RUNNER" value="pytest" />
</component>
</module>

0 comments on commit 26d5101

Please sign in to comment.