Carleslc / Simple-YAML

This Java API provides an easy-to-use way to store data and provide configurations using the YAML format.
https://carleslc.me/Simple-YAML
GNU General Public License v3.0
130 stars 38 forks source link

It would be good if there are milestones for each release. #23

Closed portlek closed 4 years ago

portlek commented 4 years ago

It would be good to know what the next release includes are. So the issues and pull requests can shape for the milestone.

Carleslc commented 4 years ago

Nothing relevant in 1.7 for the moment, only #15 (maybe version tag should be 1.6.2 instead?).

Added here: https://github.com/Carleslc/Simple-YAML/projects/1

portlek commented 4 years ago

Yes, 1.6.2 is good.

Carleslc commented 4 years ago

Well, other issues currently closed will be available too, like #16.

Features not released yet can be fetched using the master-SNAPSHOT JitPack tag.

<dependency>
    <groupId>com.github.Carleslc.Simple-YAML</groupId>
    <artifactId>Simple-Yaml</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>
<dependency>
    <groupId>com.github.Carleslc.Simple-YAML</groupId>
    <artifactId>Simple-Configuration</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>

Or with a commit tag:

<dependency>
    <groupId>com.github.Carleslc.Simple-YAML</groupId>
    <artifactId>Simple-Configuration</artifactId>
    <version>44ea4747b8</version>
</dependency>