Skip to content

Releases: IDML/idml

2.1.1: Fix precision loss in float to int conversion

13 Feb 18:53
d1732f2

Choose a tag to compare

This is a bug-fix release with no new features, and one change:

  • Fix loss of precision when converting float to int (#39)

2.1.0: Stabilizing and update packaging

22 Apr 11:27
6293f3d

Choose a tag to compare

  • Stabilizing 2.1.0 branch
  • Update tool to be properly packaged
  • Update Sonatype plugin
  • Fix Log4Shell in tool package

2.1.0-RC12: fixed scala 2.13 support

16 Mar 10:59
dfc84e5

Choose a tag to compare

This build fixes 2.13 support on the 2.1.x branch

2.1.0-RC11: improved languageName support

16 Mar 10:35
26569de

Choose a tag to compare

This expands languageName's capabilities to also include information about language script and other details.

2.0.5: improved languageName support

16 Mar 10:34
61985f9

Choose a tag to compare

This expands languageName's capabilities to also include information about language script and other details.

2.1.0-RC10: languageName function

10 Mar 14:42
5cf1d1f

Choose a tag to compare

This release adds a new function called languageName to core.

It uses the JVM's java.util.Locale database to look up the name of an ISO 639 language code.

It can be called on a string to convert it to a name if one's available, in the JVM's default locale:

language_name = language_code.languageName()

It can also be called with an argument to specify which locale to localize into:

language_name = language_code.languageName("en")

2.0.4: languageName support

10 Mar 14:41
8fff3a9

Choose a tag to compare

This release adds a new function called languageName to core.

It uses the JVM's java.util.Locale database to look up the name of an ISO 639 language code.

It can be called on a string to convert it to a name if one's available, in the JVM's default locale:

language_name = language_code.languageName()

It can also be called with an argument to specify which locale to localize into:

language_name = language_code.languageName("en")

2.1.0-RC8

01 Jul 16:37
c27c331

Choose a tag to compare

fix SgmlNode again

2.1.0-RC7: Drop support for `admin1` and `city` lookups (#29)

01 Jul 16:19
eb8e6d6

Choose a tag to compare

* Drop support for `admin1` and `city` lookups

These required external databases, and I'd rather not have side-effecting like that in IDML.

The timezone and ISO lookups are still available because they're small enough to ship with the JVM or with the jar sensibly.

* Also remove references to the geo db module from other modules

2.1.0-RC6

18 Feb 14:38
ab6e981

Choose a tag to compare

Merge branch 'master' of github.com:idml/idml