From 6b92adc36f7a5068012f543f496a69f037bd6562 Mon Sep 17 00:00:00 2001
From: ryans Default properties updated now that server requires SSL for schema. Server certificate checking is now a configurable option. Upgraded to Java 7 platform (no longer support Java 6) - this fixed many issues related to Java 6 JVM.
In order to use the library you need to include it in the
classpath of your Java program. The most recent revision of the
- version 2 series of the library is available from the following
+ version 3 series of the library is available from the following
paths:
- The versioning is organized into "major.minor" where major
- versions indicate API changes and minor versions are for bug
+ Semantic versioning is used: "major.minor.patch", where major
+ versions indicate API changes, minor versions are for new
+ features, and patch versions are for bug
fixes and implementation changes. It is relatively safe to
- include the jlog2.jar in your classpath, but you may
+ include the jlog3.jar in your classpath, but you may
alternatively include a specified minor version such as
jlog-2.3.jar.
Java eloglib Release Notes
+ September 27, 2018 - Version 3.1.0
+ November 28, 2017 - Version 3.0.0
September 16, 2014 - Version 2.9
diff --git a/src/org/jlab/elog/Library.java b/src/org/jlab/elog/Library.java
index 16b75fc..16f5400 100644
--- a/src/org/jlab/elog/Library.java
+++ b/src/org/jlab/elog/Library.java
@@ -13,7 +13,7 @@
*/
public final class Library {
- private static final String version = "2.9";
+ private static final String VERSION = "3.1.0";
private static Properties configuration;
static {
@@ -61,6 +61,6 @@ public static void setConfiguration(Properties configuration) {
* @return The version String
*/
public static String getVersion() {
- return version;
+ return VERSION;
}
}
diff --git a/src/overview.html b/src/overview.html
index d3cf599..748c6de 100644
--- a/src/overview.html
+++ b/src/overview.html
@@ -12,22 +12,23 @@ Usage
Usage
on an accelerator Linux machine with the following commands:
cd jlog -javac -cp /cs/certified/apps/eloglib/java/jlog2.jar test/org/jlab/elog/example/HelloWorldDemo.java -java -cp /cs/certified/apps/eloglib/java/jlog2.jar:test org.jlab.elog.example.HelloWorldDemo +javac -cp /cs/certified/apps/eloglib/java/jlog3.jar test/org/jlab/elog/example/HelloWorldDemo.java +java -cp /cs/certified/apps/eloglib/java/jlog3.jar:test org.jlab.elog.example.HelloWorldDemo
Running the example on Windows is similar, but the classpath (-cp) delimiter is a semicolon instead of a colon. The path to the @@ -161,7 +162,12 @@
If building from source then you can edit the properties file