Skip to content

Commit dd646af

Browse files
committed
Announce v2.7.4b2
We announce the availability of Jython 2.7.4b2 in the news and downloads sections.
1 parent 12913dd commit dd646af

File tree

3 files changed

+32
-17
lines changed

3 files changed

+32
-17
lines changed

Diff for: download.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ This version is supported on Java 8 (minimum) and 11.
2020

2121

2222
## Current Beta Version
23-
A beta version is available (Jython 2.7.4b1).
23+
A beta version is available (Jython 2.7.4b2).
2424
It can be downloaded here:
25-
- [Jython Installer](https://repo1.maven.org/maven2/org/python/jython-installer/2.7.4b1/jython-installer-2.7.4b1.jar) - Use this to install Jython.
26-
([metadata](https://search.maven.org/artifact/org.python/jython-installer/2.7.4b1/jar))
27-
- [Jython Standalone](https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.4b1/jython-standalone-2.7.4b1.jar) - Use this to run Jython without installing or to embed Jython in a Java application.
28-
([metadata](https://search.maven.org/artifact/org.python/jython-standalone/2.7.4b1/jar))
29-
- You may cite Jython 2.7.4b1 as a
30-
[dependency in your Maven or Gradle build](https://search.maven.org/artifact/org.python/jython-slim/2.7.4b1/jar).
31-
32-
A build from the repository will identify as Jython 2.7.4b2-something.
25+
- [Jython Installer](https://repo1.maven.org/maven2/org/python/jython-installer/2.7.4b2/jython-installer-2.7.4b2.jar) - Use this to install Jython.
26+
([metadata](https://search.maven.org/artifact/org.python/jython-installer/2.7.4b2/jar))
27+
- [Jython Standalone](https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.4b2/jython-standalone-2.7.4b2.jar) - Use this to run Jython without installing or to embed Jython in a Java application.
28+
([metadata](https://search.maven.org/artifact/org.python/jython-standalone/2.7.4b2/jar))
29+
- You may cite Jython 2.7.4b2 as a
30+
[dependency in your Maven or Gradle build](https://search.maven.org/artifact/org.python/jython-slim/2.7.4b2/jar).
31+
32+
A build from the repository will identify as Jython 2.7.4b3-something.
3333

3434

3535
## Previous Versions

Diff for: installation.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Installation
33
---
44
## Installer Jar
5-
Jython 2.7.2 is distributed via an executable jar file installer. After
6-
[downloading](download) it, either double click the `jython-installer-2.7.2.jar` or run java with the -jar option
5+
Jython 2.7.3 is distributed via an executable jar file installer. After
6+
[downloading](download) it, either double click the `jython-installer-2.7.3.jar` or run java with the -jar option
77
```
8-
$ java -jar jython-installer-2.7.2.jar
8+
$ java -jar jython-installer-2.7.3.jar
99
```
1010

1111
This will start the regular GUI installer on most systems, or a console installer on headless systems. To force the installer to work in headless mode invoke the installer as:
1212
```
13-
$ java -jar jython-installer-2.7.2.jar --console
13+
$ java -jar jython-installer-2.7.3.jar --console
1414
```
1515
The installer will then walk through a similar set of steps in
1616
graphical or console mode: showing the license, selecting an install
@@ -26,7 +26,7 @@ The standalone option does no caching and so avoids the startup overhead (most l
2626

2727
You can try it out by running the installer:
2828
```
29-
$ java -jar jython-installer-2.7.2.jar
29+
$ java -jar jython-installer-2.7.3.jar
3030
```
3131
then when you come to the "Installation type" page, select "Standalone".
3232

@@ -44,5 +44,5 @@ Or, add this file to the classpath of your application.
4444

4545
You can get a list of installer options (to install Jython unattended, for example) by running:
4646
```
47-
$ java -jar jython-installer-2.7.2.jar --help
47+
$ java -jar jython-installer-2.7.3.jar --help
4848
```

Diff for: news.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,32 @@ title: News
44

55
## News
66

7+
### Jython 2.7.4 beta (v2.7.4b2 May 2024)
8+
9+
A second beta release is now available for Jython 2.7.4
10+
at [Maven Central](https://search.maven.org/search?q=g:org.python).
11+
It is tested against Java 8 and Java 11.
12+
13+
Beta 2 adds one interesting feature:
14+
the JARs provide Java (automatic) modules,
15+
the better to support use in modular builds.
16+
See [NEWS](https://github.com/jython/jython/blob/v2.7.4b2/NEWS)
17+
for guidance on additional options that may be needed to the `java` command
18+
in modular usage.
19+
20+
This addition should not interfere with traditional use on the class path,
21+
and does not alter Jython launch scripts.
22+
723
### Jython 2.7.4 beta (v2.7.4b1 April 2024)
824

925
A beta release is now available for Jython 2.7.4 at [Maven Central](https://search.maven.org/search?q=g:org.python).
1026
It is tested against Java 8 and Java 11.
1127
Thanks to all those who have helped identify and fix bugs.
1228

13-
1429
### Jython 2.7.3 release (v2.7.3 September 2022)
1530

1631
A new full release is now available for Jython 2.7.3 at
17-
[Maven Central](https://search.maven.org/search?q=g:org.python).
32+
[Maven Central](https://search.maven.org/search?q=g:org.python+v:2.7.3).
1833
It is built and tested with Java 8 and tested against Java 11.
1934

2035
The cumulative feature and bug-fix history is at

0 commit comments

Comments
 (0)