Skip to content

Commit 5ff47dd

Browse files
Add comments and changelog
1 parent 1eceb61 commit 5ff47dd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

espresso/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Espresso Changelog
22

3+
## Version 24.1.0
4+
* Added `java.RuntimeResourceId` to allow customizing the truffle resource used to locate the java standard library used by espresso.
5+
The resource called "espresso-runtime-<RuntimeResourceId>" will be used. By default, "jdk21" then "openjdk21" are attempted.
6+
* Espresso can now use TRegex to execute java.util.regex patterns. TRegex offers better performance than the standard implementation. Use `java.UseTRegex` to enable this engine.
7+
* The interop `readBuffer` method can now be used from the guest Interop API and guest ByteBuffer objects implement this interop message.
8+
* Many issues with espresso's JDWP implementation were fixed, improving the user experience when debugging with a Java IDE.
9+
310
## Version 24.0.0
411
### User-visible changes
512
* Added support for transparently converting common JDK exception types that flow from host to an embedded Espresso context.

espresso/mx.espresso/mx_espresso.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,10 +571,10 @@ def getArchivableResults(self, use_relpath=True, single=False):
571571
yield path, arcname
572572

573573
def post_init(self):
574-
pass
574+
pass # help act like a distribution since this is registered as a distribution
575575

576576
def archived_deps(self):
577-
return []
577+
return [] # help act like a distribution since this is registered as a distribution
578578

579579

580580
class EspressoRuntimeResourceProject(mx.JavaProject):

0 commit comments

Comments
 (0)