Skip to content

Commit

Permalink
More reorganization, add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bibi-reden committed Apr 29, 2024
1 parent d15883b commit 795914b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,20 @@
- `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 ⚒️
### Fixes ⚒️

- Applied a change to the `Student::position` function, was passing in the `Student::armor_type` for some reason... oops!

## 0.4.1 - 2024-04-01
## 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 ⚒️
### Fixes ⚒️
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ pub mod types;
pub use api::blocking;

pub use api::{currency::*, enemy::*, equipment::*, raid::*, student::*, summon::*};

pub use enums::{
Armor, BulletType, Club, Language, Position, School, Squad, TacticalRole, WeaponType,
};

pub use errors::BlueArchiveError;
pub use fetcher::StudentFetcher;
pub use filter::student::StudentFilter;
Expand Down

0 comments on commit 795914b

Please sign in to comment.