You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jeff5 , I think -dev is a more relevant suffice for the alias then -next given that this alias would typically refer to a development snapshot (pre-release).
Not a development snapshot, technically: it would always be a beta or a release candidate, something worth publishing at Maven Central. Does that affect your choice of name?
It would be nice to stabilise this. Is there a convention elsewhere in the JBang ecosystem? If it's "-dev", fair enough.
I've noticed that the beta shows up as the "latest version" on Maven Central (questionably in my view). Is there maybe some way (a clean one please) to select the pre-final "latest" when the latest is not final, and ideally not involving the editing of the catalog each time?
wfouche
changed the title
Define aliases jython-cli-latest and jython-cli-release
Define aliases jython-latest & jython-release and rename jython-cli to jython
Sep 6, 2026
wfouche
changed the title
Define aliases jython-latest & jython-release and rename jython-cli to jython
Renamed alias jython-cli to jython and set version to RELEASE (latest stable version)
Sep 18, 2026
wfouche
changed the title
Renamed alias jython-cli to jython and set version to RELEASE (latest stable version)
Set jython-cli version to RELEASE (latest stable version)
Sep 19, 2026
Alias jython-cli@jython will now always run the latest stable version of Jython which is the RELEASE version. If a different version of Jython is required, then set property -Djbang.jython.version=<version>.
$ jbang run jython-cli@jython -V
Jython 2.7.5b1
$ jbang run -Djbang.jython.version=2.7.4 jython-cli@jython -V
Jython 2.7.4
$ jbang run -Djbang.jython.version=LATEST jython-cli@jython -V
Jython 2.7.5b1
$ jbang run -Djbang.jython.version=RELEASE jython-cli@jython -V
Jython 2.7.5b1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@jeff5 , I think
-devis a more relevant suffice for the alias then-nextgiven that this alias would typically refer to a development snapshot (pre-release).