Skip to content

Commit

Permalink
Add missing Manga publishing status discontinued (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute authored Aug 23, 2022
1 parent aa24e3a commit d7a8958
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.kttdevelopment</groupId>
<artifactId>mal4j</artifactId>
<version>2.9.0</version>
<version>2.9.1</version>

<profiles>
<profile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public enum AnimeSource implements FieldEnum {
* @deprecated use {@link #DigitalManga}
*/
@Deprecated
Digital_Manga ("digital_manga"),
Digital_Manga ("digital_manga"),
DigitalManga ("digital_manga"),
Novel ("novel"),
LightNovel ("light_novel"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @see MediaItem#getStatus()
* @since 1.0.0
* @version 2.9.0
* @version 2.9.1
* @author Katsute
*/
public enum MangaPublishStatus implements FieldEnum {
Expand All @@ -38,7 +38,8 @@ public enum MangaPublishStatus implements FieldEnum {
NotYetPublished ("not_yet_published"),
Finished ("finished"),

OnHiatus ("on_hiatus");
OnHiatus ("on_hiatus"),
Discontinued ("discontinued");

private final String field;

Expand Down

0 comments on commit d7a8958

Please sign in to comment.