javadoc fix
This commit is contained in:
zzz
2025-06-15 08:30:02 -04:00
parent 8f56057e36
commit dfe7dce159
3 changed files with 13 additions and 2 deletions

View File

@ -51,7 +51,7 @@ import net.i2p.util.Translate;
*
* Also contains commented-out code to generate the mercator.txt file.
*
* @since 0.9.xx
* @since 0.9.66
*/
public class MapMaker {
private final RouterContext _context;

View File

@ -1,3 +1,14 @@
2025-06-15 zzz
* I2CP: Add support for service records (Proposal 167) (PR 501)
* SSU2: Remove old active throttle code (PR 505)
* Stats: Remove old stat log feature (PR 503)
2025-06-05 zzz
* i2ptunnel: Remove delay before flushing output
2025-06-04 zzz
* Console: Add sidebar warning about Java 17
2025-06-02 2.9.0 (API 0.9.66) released
2025-05-30 zzz

View File

@ -20,7 +20,7 @@ public class RouterVersion {
public final static String VERSION = CoreVersion.VERSION;
/** for example: "beta", "alpha", "rc" */
public final static String QUALIFIER = "";
public final static long BUILD = 0;
public final static long BUILD = 1;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;