This commit is contained in:
MaxOhn
2021-02-25 15:23:53 +01:00
parent 146562dc15
commit e0f298e9e6
2 changed files with 8 additions and 4 deletions
+6 -2
View File
@@ -1,10 +1,14 @@
## Upcoming
- Async beatmap parsing
- No changes so far
# v0.2.0
- Async beatmap parsing through features `async_tokio` or `async_std`
- Hide various parsing related types further inwards, i.e. `rosu_pp::parse::some_type` instead of `rosu_pp::some_type`
- Affected types: `DifficultyPoint`, `HitObject`, `Pos2`, `TimingPoint`, `HitObjectKind`, `PathType`, `HitSound`
# v0.1.1
## v0.1.1
- parse:
- Efficiently handle huge amounts of curvepoints
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "rosu-pp"
version = "0.1.1"
version = "0.2.0"
authors = ["MaxOhn <ohn.m@hotmail.de>"]
edition = "2018"
license = "MIT"
@@ -11,7 +11,7 @@ description = "osu! difficulty and pp calculation for all modes"
keywords = ["osu", "pp", "stars", "async"]
[features]
default = ["osu", "taiko", "fruits", "mania", "no_leniency", "async_tokio"]
default = ["osu", "taiko", "fruits", "mania", "no_leniency"]
# game modes
osu = []