Skip to content

Commit

Permalink
release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
clitic committed Dec 1, 2023
1 parent 2e9511f commit 35cd16e
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 8 deletions.
86 changes: 85 additions & 1 deletion README.md
10 changes: 9 additions & 1 deletion kdam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1] - 2023-10-05

## Changed

- Bump up pyo3 0.19 -> 0.20
- Bump up windows-sys 0.48.0 -> 0.52.0

## [0.5.0] - 2023-10-05

## Added
Expand Down Expand Up @@ -191,7 +198,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.0] - 2022-03-20

[Unreleased]: https://github.com/clitic/kdam/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/clitic/kdam/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/clitic/kdam/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/clitic/kdam/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/clitic/kdam/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/clitic/kdam/compare/v0.3.0...v0.4.0
Expand Down
6 changes: 3 additions & 3 deletions kdam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ license = "MIT OR Apache-2.0"
name = "kdam"
readme = "README.md"
repository = "https://github.com/clitic/kdam/tree/main/kdam"
version = "0.5.0"
version = "0.5.1"

[dependencies]
colorgrad = { version = "0.6", optional = true }
formatx = { version = "0.2.1", optional = true }
kdam_derive = { version = "0.1.0", path = "../kdam_derive", optional = true }
pyo3 = { version = "0.19", optional = true }
pyo3 = { version = "0.20", optional = true }
rayon = { version = "1.8", optional = true }
terminal_size = "0.3"
unicode-segmentation = { version = "1", optional = true }
unicode-width = { version = "0.1", optional = true }

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.48.0", features = ["Win32_Foundation", "Win32_System_Console"] }
windows-sys = { version = "0.52.0", features = ["Win32_Foundation", "Win32_System_Console"] }

[features]
derive = ["dep:kdam_derive"]
Expand Down
2 changes: 1 addition & 1 deletion kdam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Add this to your Cargo.toml file.

```toml
[dependencies]
kdam = "0.5.0"
kdam = "0.5.1"
```

Or add from command line.
Expand Down
4 changes: 2 additions & 2 deletions kdam/examples/notebook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ crate-type = ["cdylib"]

[dependencies]
kdam = { path = "../..", features = ["notebook", "template"] }
pyo3 = { version = "0.19", features = ["extension-module"] }
pyo3 = { version = "0.20", features = ["extension-module"] }

[build-dependencies]
pyo3-build-config = "0.19"
pyo3-build-config = "0.20"

0 comments on commit 35cd16e

Please sign in to comment.