Skip to content

Commit

Permalink
update to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
clitic committed May 13, 2024
1 parent 08949c3 commit 65b01de
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Tests # https://pyo3.rs/faq
- name: Run Tests # https://pyo3.rs/main/faq
run: cargo test -p kdam -p kdam_derive --all-features
- name: Build file_download example
run: cargo build -p file_download
Expand Down
11 changes: 10 additions & 1 deletion kdam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2] - 2024-05-13

### Changed

- Bump up formatx 0.2.1 -> 0.2.2
- Bump up pyo3 0.20 -> 0.21
- Bump up rayon 1.8 -> 1.10

## [0.5.1] - 2023-10-05

### Changed
Expand Down Expand Up @@ -198,7 +206,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.1...HEAD
[Unreleased]: https://github.com/clitic/kdam/compare/0.5.2...HEAD
[0.5.2]: https://github.com/clitic/kdam/compare/v0.5.1...0.5.2
[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
Expand Down
6 changes: 3 additions & 3 deletions kdam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ license = "MIT OR Apache-2.0"
name = "kdam"
readme = "README.md"
repository = "https://github.com/clitic/kdam/tree/main/kdam"
version = "0.5.1"
version = "0.5.2"

[dependencies]
colorgrad = { version = "0.6", optional = true }
formatx = { version = "0.2.1", optional = true }
formatx = { version = "0.2.2", optional = true }
kdam_derive = { version = "0.1.0", path = "../kdam_derive", optional = true }
pyo3 = { version = "0.21", optional = true }
rayon = { version = "1.8", optional = true }
rayon = { version = "1.10", optional = true }
terminal_size = "0.3"
unicode-segmentation = { version = "1", optional = true }
unicode-width = { version = "0.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion kdam/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-23 clitic
Copyright (c) 2022-24 clitic

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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.1"
kdam = "0.5.2"
```

Or add from command line.
Expand Down

0 comments on commit 65b01de

Please sign in to comment.