Skip to content

Commit

Permalink
Fix PyCharm compatibility ranges for #580.
Browse files Browse the repository at this point in the history
Bump version number for patch release.
  • Loading branch information
donkirkby committed Dec 16, 2023
1 parent 578c47e commit ae29b9d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion contributing-pycharm.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ two types of IDEA release.
### Publish a new release for the PyCharm plugin
1. Check that all the Python unit tests pass, by running tox.
2. Update the version number in `about.py` and `pycharm/build.gradle.kts`, and
the change notes in `pycharm/src/main/resources/META-INF/plugin.xml`.
the change notes in `pycharm/src/main/resources/META-INF/plugin.xml`. Keep
the version in sync with `html/meta.yaml`.
3. Run the `runPluginVerifier` and `buildPlugin` Gradle tasks. You should get a
`livepy-X.Y.Z.zip` file for the new version under
`pycharm/build/distributions`.
Expand Down
2 changes: 1 addition & 1 deletion html/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: space-tracer
version: 4.11.0
version: 4.11.2
source:
path: space_tracer-4.11.0
test:
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.11.1'
__version__ = '4.11.2'
__author__ = "Don Kirkby"
__author_email__ = "[email protected]"
__description__ = "Trade time for space when debugging your code."
Expand Down
6 changes: 3 additions & 3 deletions pycharm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "io.github.donkirkby"
version = "4.11.1"
version = "4.11.2"

repositories {
mavenCentral()
Expand Down Expand Up @@ -44,13 +44,13 @@ tasks {
}

patchPluginXml {
sinceBuild.set("212.4746.92")
sinceBuild.set("233.11799.241")
untilBuild.set("")
}

runPluginVerifier {
// Verify against sinceBuild version and current version.
ideVersions.set(listOf<String>("212.4746.92", "233.11799.241"))
ideVersions.set(listOf<String>("233.11799.241", "233.11799.300"))
}

signPlugin {
Expand Down

0 comments on commit ae29b9d

Please sign in to comment.