-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.5.2 * edit changelog 0.5.2
- Loading branch information
Showing
4 changed files
with
12 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,5 @@ | ||
# blue_archive-rs | ||
# 0.5.2 - 2024-06-22 | ||
|
||
## Fixes ⚒️ | ||
|
||
## 0.5.1 - 2024-05-04 | ||
|
||
### Additions ✨ | ||
|
||
### Changes 📝 | ||
- Modified displayed portions of `Student` and other struct fields. | ||
- Changed `Released` struct to allow direct access to `japan`, `global` and `china` fields. | ||
- Changed how `age` is obtained and how it is serialized/deserialized. This will be done as soon as it is read/written without a method call. | ||
- Use `student.age` instead of `student.age()`. | ||
|
||
### Fixes ⚒️ | ||
|
||
## 0.5.0 - 2024-04-01 | ||
|
||
### Additions ✨ | ||
|
||
Added the new `blocking` feature. It is not enabled by default, so you must require it if you wish to use it! | ||
|
||
- This uses reqwest's `blocking` feature to handle all requests in a non-asynchronous way. | ||
|
||
### Changes 📝 | ||
|
||
- Changed how some internal deserialization and hashing works in the crate. | ||
|
||
### Fixes ⚒️ | ||
|
||
## 0.4.0 - 2024-03-23 | ||
|
||
### Additions ✨ | ||
|
||
- This changelog. It will be assumed that the latest update will be on the top. Read from ascending order. | ||
- Currency API has been added. You can use the existing functions: | ||
- `blue_archive::fetch_all_currencies` | ||
- `blue_archive::fetch_currency_by_name` | ||
- Equipment API has been added. You can use the existing functions: | ||
- `blue_archive::fetch_all_equipment` | ||
- `blue_archive::fetch_equipment_by_name` | ||
- `blue_archive::fetch_equipment_by_category` | ||
- Enemies API has been added. You can use the existing functions: | ||
- `blue_archive::fetch_all_enemies` | ||
- `blue_archive::fetch_enemy_by_name` | ||
|
||
### Changes 📝 | ||
|
||
- `impl Into<String>` has been changed to a more suitable `AsRef<str>`. This is an internal change related to name-based searching. | ||
- `ID(u32)`'s inner value has been set to private, access the value by using `ID::to_u32`. | ||
- Raid skills have been modified into enumerations, which allows for better differentiation of the data. | ||
- Descriptions are now directly decoded through `serde` deserialization. | ||
- Instead of `description()`, please use `description`. | ||
- Student's first and last names have been made directly public through member field access. | ||
- Instead of `Student::first_name()` & `Student::last_name()`, please use `Student::first_name` & `Student::last_name`. | ||
- `Released` type has been changed to a struct with an inner tuple value, though to get the regions, you use the functions: | ||
- `Released::japan()`, `Released::global()`, and `Released::china()` for example. | ||
|
||
### Fixes ⚒️ | ||
|
||
- Applied a change to the `Student::position` function, was passing in the `Student::armor_type` for some reason... oops! | ||
- Resolved an issue with raid data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters