The backward compatibility is assumed, except in three cases:
During the creation of a new Corese without argument, another method has to be called. Before: Corese corese = new Corese(); Now: Corese corese = new Corese(); corese.initCorese();
The setProperty method is no longer static. Before: Corese.setProperty("",""); Now: corese.setProperty("",""); // where corese is an instance of Corese
The method RDFLoadDir() now throws EngineInitException