Skip to content

Commit

Permalink
fix docs, prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute committed May 24, 2023
1 parent e236be4 commit 3d5ce75
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
# Changelog

## 3.2.0

### New Features

* Add people support [#389](https://github.com/KatsuteDev/Mal4J/pull/389) ([@Katsute](https://github.com/Katsute))

This is an undocumented feature, you must use `MyAnimeList.enableExperimentalFeature(ExperimentalFeature.PEOPLE)` to enable it.

Retrieve people using `MyAnimeList.getPerson(id)`.

Person information currently includes:

* Name
* Birthday
* Picture

**Full Changelog**: [`3.1.0...3.2.0`](https://github.com/KatsuteDev/Mal4J/compare/3.1.0...3.2.0)

## 3.1.0

### New Features

* Add character support [#381](https://github.com/KatsuteDev/Mal4J/pull/381) ([@Katsute](https://github.com/Katsute))

This is an undocumented feature, you must use `MyAnimeList.enableExperimentalFeature(ExperimentalFeature.CHARACTERS)` to enable it.

Retrieve characters using `MyAnimeList.getCharacter(id)`.
Expand All @@ -17,6 +36,7 @@
* Biography
* Animeography
* Add ability to retrieve characters from Anime [#385](https://github.com/KatsuteDev/Mal4J/pull/385) ([@Katsute](https://github.com/Katsute))

This is an undocumented feature, you must use `MyAnimeList.enableExperimentalFeature(ExperimentalFeature.CHARACTERS)` to enable it.

Retrieve characters using `MyAnimeList.getAnimeCharacters(anime id)` or `Anime.getCharacters()`.
Expand All @@ -32,7 +52,7 @@
### Fixes

* Fix incomplete Anime/Manga listings [#386](https://github.com/KatsuteDev/Mal4J/pull/386) ([@Katsute](https://github.com/Katsute))
* Anime/Manga recommendation
* Anime/Manga recommendation
* Related Anime/Manga

### Dependencies
Expand All @@ -59,6 +79,7 @@

* Schema parsing optimizations [#363](https://github.com/KatsuteDev/Mal4J/pull/363) ([@Katsute](https://github.com/Katsute))
* JSON parsing optimizations [#364](https://github.com/KatsuteDev/Mal4J/pull/364) ([@Katsute](https://github.com/Katsute))

This library is now 70% faster after this change.

### 📘 Dependencies
Expand Down
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>dev.katsute</groupId>
<artifactId>mal4j</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>

<profiles>
<profile>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/dev/katsute/mal4j/character/Character.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* @see dev.katsute.mal4j.MyAnimeList#getAnimeCharacters(long)
* @see dev.katsute.mal4j.MyAnimeList#getCharacter(long)
* @see dev.katsute.mal4j.MyAnimeList#getCharacter(long, String...)
* @see Character
* @since 3.1.0
* @version 3.1.0
* @author Katsute
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/dev/katsute/mal4j/people/Person.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
/**
* Represents a person.
*
* @see dev.katsute.mal4j.MyAnimeList#getPerson(long)
* @see dev.katsute.mal4j.MyAnimeList#getPerson(long, String...)
* @since 3.2.0
* @version 3.2.0
* @author Katsute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,4 @@ private static Stream<Arguments> personProvider(){
.stream();
}


}

0 comments on commit 3d5ce75

Please sign in to comment.