Applied-Energistics-2-tiler.../src/main/java/appeng/services/version/github/FormattedRelease.java

22 lines
350 B
Java
Raw Normal View History

package appeng.services.version.github;
import appeng.services.version.Version;
/**
* Represents the acquired, processed information through github about a release of Applied Energistics 2
*/
public interface FormattedRelease
{
/**
* @return changelog
*/
String changelog();
/**
* @return processed version
*/
Version version();
}