v0.9.1
This commit is contained in:
+2
-2
@@ -1,9 +1,9 @@
|
||||
## Upcoming
|
||||
# v0.9.1 (2022-10-29)
|
||||
|
||||
- Updated to [rosu-pp v0.9.1](https://github.com/MaxOhn/rosu-pp/blob/main/CHANGELOG.md#v091-2022-10-26) including the big changes in [v0.9.0](https://github.com/MaxOhn/rosu-pp/blob/main/CHANGELOG.md#v090-2022-10-24)
|
||||
- The binding interface is rewritten completely, see the readme.
|
||||
|
||||
# v0.8.0 (2022-08-02)
|
||||
## v0.8.0 (2022-08-02)
|
||||
- Updated to [rosu-pp v0.8.0](https://github.com/MaxOhn/rosu-pp/blob/main/CHANGELOG.md#v080-2022-08-02)
|
||||
- The calculation result now contains a `timePreempt` field for osu!standard and `greatHitWindow` for
|
||||
osu!standard, osu!taiko, and osu!mania.
|
||||
|
||||
Generated
+1
-1
@@ -175,7 +175,7 @@ checksum = "70c4f12b757391bb233619b0bb267e424bc7395dcbfa1f85212f16b734784a07"
|
||||
|
||||
[[package]]
|
||||
name = "rosu-pp-py"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
dependencies = [
|
||||
"pyo3",
|
||||
"rosu-pp",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rosu-pp-py"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
description = "osu! difficulty and pp calculation for all modes"
|
||||
authors = ["Max Ohn <ohn.m@hotmail.de>"]
|
||||
license = "MIT"
|
||||
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
pyo3 = { version = "0.17", features = ["extension-module", "macros"] }
|
||||
rosu-pp = { version = "0.9" }
|
||||
rosu-pp = { version = "0.9.1" }
|
||||
|
||||
[profile.release]
|
||||
lto = "fat"
|
||||
|
||||
@@ -52,7 +52,7 @@ calc.set_mods(8 + 64) # HDDT
|
||||
```py
|
||||
from rosu_pp_py import Beatmap, Calculator
|
||||
|
||||
map = Beatmap(path = './maps/100.osu')
|
||||
map = Beatmap(path = "./maps/100.osu")
|
||||
calc = Calculator(mods = 8)
|
||||
|
||||
# Calculate an SS on HD
|
||||
@@ -97,5 +97,5 @@ $ pip install git+https://github.com/MaxOhn/rosu-pp-py
|
||||
## Learn More
|
||||
- [rosu-pp documentation](https://docs.rs/rosu-pp/latest/rosu_pp/)
|
||||
- [Rust documentation](https://www.rust-lang.org).
|
||||
- [PyO3 documentation](https://pyo3.rs/v0.15.1/).
|
||||
- [PyO3 documentation](https://pyo3.rs/).
|
||||
- [Python documentation](https://docs.python.org/3/).
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||
|
||||
[project]
|
||||
name = "rosu-pp-py"
|
||||
version = "0.8.0"
|
||||
version = "0.9.1"
|
||||
requires-python = ">=3.7"
|
||||
description = "osu! difficulty and pp calculation for all modes"
|
||||
classifiers = [
|
||||
|
||||
Reference in New Issue
Block a user