Skip to content

Commit 967171e

Browse files
committed
update versions
1 parent 676d041 commit 967171e

19 files changed

+93
-43
lines changed

.idea/artifacts/intellij_scripting_javascript_jar.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/intellij_scripting_ruby_jar.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_clojure_clojure_Release.xml

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_graalvm_js_js_Release.xml

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_graalvm_js_js_launcher_Release.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_graalvm_js_js_scriptengine_Release.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_jruby_jruby_Release.xml

+36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/org_jruby_jruby_complete_Release.xml

-10
This file was deleted.

.idea/libraries/org_python_jython_standalone_Release.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ Clojure
1717
=======
1818

1919
* [Plugin page](https://plugins.jetbrains.com/plugin/12469-intellij-scripting-clojure)
20-
* Script engine: `org.clojars.ato:clojure-jsr223:1.5.1`, `org.clojure:clojure:1.10.1`
20+
* Script engine: `org.clojars.ato:clojure-jsr223:1.5.1`, `org.clojure:clojure:1.12.0-alpha1`
21+
22+
Add `-Didea.mimic.jar.url.connection=true` VM option the IDE via `Help | Edit Custom VM Options`.
2123

2224

2325
JavaScript
2426
==========
2527

2628
* [Plugin page](https://plugins.jetbrains.com/plugin/12548-intellij-scripting-javascript)
27-
* [Script engine](https://github.com/graalvm/graaljs): `org.graalvm.js:js-scriptengine:19.0.0`, `org.graalvm.js:js:19.0.0`
29+
* [Script engine](https://github.com/graalvm/graaljs): `org.graalvm.js:js-scriptengine:22.2.0`, `org.graalvm.js:js:22.2.0`
2830

2931
Add `-Dpolyglot.js.nashorn-compat=true` VM option the IDE via `Help | Edit Custom VM Options`.
3032

@@ -33,14 +35,16 @@ Python
3335
======
3436

3537
* [Plugin page](https://plugins.jetbrains.com/plugin/12471-intellij-scripting-python)
36-
* [Script engine](https://github.com/jythontools/jython): `org.python:jython-standalone:2.7.0`
38+
* [Script engine](https://github.com/jythontools/jython): `org.python:jython-standalone:2.7.3`
39+
40+
Add `-Didea.mimic.jar.url.connection=true` VM option the IDE via `Help | Edit Custom VM Options`.
3741

3842

3943
Ruby
4044
====
4145

4246
* [Plugin page](https://plugins.jetbrains.com/plugin/12549-intellij-scripting-ruby)
43-
* [Script engine](https://github.com/jruby/jruby): `org.jruby:jruby-complete:9.2.7.0`
47+
* [Script engine](https://github.com/jruby/jruby): `org.jruby:jruby:9.3.8.0`
4448

4549
Add `-Dorg.jruby.embed.localcontext.scope=threadsafe` VM option the IDE via `Help | Edit Custom VM Options`.
4650

intellij-scripting-clojure.iml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</content>
99
<orderEntry type="inheritedJdk" />
1010
<orderEntry type="sourceFolder" forTests="false" />
11-
<orderEntry type="library" name="org.clojure:clojure:1.10.1" level="project" />
11+
<orderEntry type="library" name="org.clojure:clojure:Release" level="project" />
1212
<orderEntry type="library" name="org.clojars.ato:clojure-jsr223:Release" level="project" />
1313
</component>
1414
</module>

intellij-scripting-javascript.iml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<orderEntry type="inheritedJdk" />
1010
<orderEntry type="sourceFolder" forTests="false" />
1111
<orderEntry type="library" name="org.graalvm.js:js:Release" level="project" />
12-
<orderEntry type="library" name="org.graalvm.js:js-scriptengine:19.0.0" level="project" />
12+
<orderEntry type="library" name="org.graalvm.js:js-scriptengine:Release" level="project" />
13+
<orderEntry type="library" name="org.graalvm.js:js-launcher:Release" level="project" />
1314
</component>
1415
</module>

intellij-scripting-ruby.iml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
</content>
99
<orderEntry type="inheritedJdk" />
1010
<orderEntry type="sourceFolder" forTests="false" />
11-
<orderEntry type="library" name="org.jruby:jruby-complete:Release" level="project" />
11+
<orderEntry type="library" name="org.jruby:jruby:Release" level="project" />
1212
</component>
1313
</module>

intellij-scripting.iml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<content url="file://$MODULE_DIR$">
66
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
77
</content>
8-
<orderEntry type="jdk" jdkName="1.6" jdkType="JavaSDK" />
8+
<orderEntry type="inheritedJdk" />
99
<orderEntry type="sourceFolder" forTests="false" />
1010
</component>
1111
</module>

resources-clojure/META-INF/plugin.xml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<idea-plugin use-idea-classloader="true">
22
<id>org.jetbrains.intellij.scripting-clojure</id>
33
<name>IntelliJ Scripting: Clojure</name>
4-
<version>1.1</version>
4+
<version>1.2</version>
55
<vendor email="[email protected]">Greg Shrago</vendor>
6-
<idea-version since-build="173.0"/>
6+
<idea-version since-build="222.0"/>
77

88
<description><![CDATA[Clojure engine for IntelliJ-based tools scripting.
9+
<br>
10+
Add <code>-Didea.mimic.jar.url.connection=true</code> VM option the IDE via <code>Help | Edit Custom VM Options</code>.
11+
<br>
912
<br>
1013
<a href="https://github.com/gregsh/intellij-scripting-plugins#clojure">IntelliJ Scripting homepage</a>
1114
]]>
@@ -16,7 +19,7 @@
1619

1720
<change-notes><![CDATA[
1821
<ul>
19-
<li>org.clojure:clojure:1.11.0-alpha1</li>
22+
<li>org.clojure:clojure:1.12.0-alpha1</li>
2023
<li>org.clojars.ato:clojure-jsr223:1.5.1</li>
2124
</ul>
2225
]]>

resources-javascript/META-INF/plugin.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<idea-plugin use-idea-classloader="true">
22
<id>org.jetbrains.intellij.scripting-javascript</id>
33
<name>IntelliJ Scripting: JavaScript</name>
4-
<version>1.1</version>
4+
<version>1.2</version>
55
<vendor email="[email protected]">Greg Shrago</vendor>
6-
<idea-version since-build="192.0"/>
6+
<idea-version since-build="222.0"/>
77

88
<description><![CDATA[JavaScript engine for IntelliJ-based tools scripting.
99
<br>
@@ -20,8 +20,8 @@
2020

2121
<change-notes><![CDATA[
2222
<ul>
23-
<li>org.graalvm.js:js:21.1.0</li>
24-
<li>org.graalvm.js:js-scriptengine:21.1.0</li>
23+
<li>org.graalvm.js:js:22.2.0</li>
24+
<li>org.graalvm.js:js-scriptengine:22.2.0</li>
2525
</ul>
2626
]]>
2727
</change-notes>

resources-python/META-INF/plugin.xml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<idea-plugin use-idea-classloader="true">
22
<id>org.jetbrains.intellij.scripting-python</id>
33
<name>IntelliJ Scripting: Python</name>
4-
<version>1.1</version>
4+
<version>1.2</version>
55
<vendor email="[email protected]">Greg Shrago</vendor>
6-
<idea-version since-build="173.0"/>
6+
<idea-version since-build="222.0"/>
77

88
<description><![CDATA[Python engine for IntelliJ-based tools scripting.
9+
<br>
10+
Add <code>-Didea.mimic.jar.url.connection=true</code> VM option the IDE via <code>Help | Edit Custom VM Options</code>.
11+
<br>
912
<br>
1013
<a href="https://github.com/jythontools/jython">Jython homepage</a>
1114
<br>
@@ -17,7 +20,7 @@
1720

1821
<change-notes><![CDATA[
1922
<ul>
20-
<li>org.python:jython-standalone:2.7.2</li>
23+
<li>org.python:jython-standalone:2.7.3</li>
2124
</ul>
2225
]]>
2326
</change-notes>

resources-ruby/META-INF/plugin.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<idea-plugin use-idea-classloader="true">
22
<id>org.jetbrains.intellij.scripting-ruby</id>
33
<name>IntelliJ Scripting: Ruby</name>
4-
<version>1.1</version>
4+
<version>1.2</version>
55
<vendor email="[email protected]">Greg Shrago</vendor>
6-
<idea-version since-build="173.0"/>
6+
<idea-version since-build="222.0"/>
77

88
<description><![CDATA[Ruby engine for IntelliJ-based tools scripting.
99
<br>
@@ -20,7 +20,7 @@
2020

2121
<change-notes><![CDATA[
2222
<ul>
23-
<li>org.jruby:jruby-complete:9.2.19.0</li>
23+
<li>org.jruby:jruby:9.3.8.0</li>
2424
</ul>
2525
]]>
2626
</change-notes>

0 commit comments

Comments
 (0)