SWI-Prolog / packages-jpl

JPL: The Prolog <-> Java interface
BSD 2-Clause "Simplified" License
54 stars 33 forks source link

Uptick the jpl.pl minor version number? #89

Open dtonhofer opened 3 years ago

dtonhofer commented 3 years ago

I have seen all my modification to jpl.pl actually made into to the release. Thanks!

I seen no bug reports (yet?), which is encouraging.

Here is something I forgot:

The JPL Prolog version is still declared as

jpl_pl_lib_version(7, 6, 1, stable).  % jref as blob

git blame jpl.pl says this was set in June

3d60bdf8 (Sebastian      2020-06-14 23:31:04 +1000 1315) jpl_pl_lib_version(7, 6, 1, stable).  % jref as blob

It should probably be bumped on the minor number (at least according to https://semver.org/ ) because new predicates (actually aliases for existing ones) are being exported:

c6ab385d (David Tonhofer 2020-08-26 14:05:16 +0200   51)         jpl_classname_to_type/2, % name does not reflect that it deals 
3ac98a1c (David Tonhofer 2020-08-27 12:53:18 +0200   53)         jpl_entityname_to_type/2, % new alias for jpl_classname_to_type/2
c6ab385d (David Tonhofer 2020-08-26 14:05:16 +0200   71)         jpl_type_to_classname/2, % name does not reflect that it deals with entity names
3ac98a1c (David Tonhofer 2020-08-27 12:53:18 +0200   72)         jpl_type_to_entityname/2, % new alias for jpl_type_to_classname/2