Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja committed Aug 10, 2023
1 parent b150962 commit 9c14b3e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
- 3.9
- "3.10"
- "3.11"
- 3.12.0-beta.4
os:
- ubuntu-latest
- windows-latest
Expand Down Expand Up @@ -137,7 +138,7 @@ jobs:
- uses: PyO3/maturin-action@v1
with:
command: build
args: --release -o dist --universal2 --find-interpreter
args: --release -o dist --target universal2-apple-darwin --find-interpreter
working-directory: python
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.4
rev: v3.0.1
hooks:
- id: prettier
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/doublify/pre-commit-rust
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-md-ulb-pwrap"
version = "0.0.3"
version = "0.1.0"
edition = "2021"
description = "Python bindings for Rust crate md-ulb-pwrap."
readme = "../README.md"
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "md-ulb-pwrap"
version = "0.0.3"
version = "0.1.0"
edition = "2021"
description = "Markdown paragraph wrapper using Unicode Line Breaking Algorithm."
license = "BSD-3-Clause"
Expand All @@ -14,4 +14,4 @@ path = "src/lib.rs"
unicode-linebreak = "0.1.4"

[dev-dependencies]
rstest = "0.16.0"
rstest = "0.17.0"
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,6 @@ mod tests {
#[case] width: usize,
#[case] expected: String,
) {
assert_eq!(ulb_wrap_paragraph(text, width, width), expected,);
assert_eq!(ulb_wrap_paragraph(text, width, width), expected);
}
}

0 comments on commit 9c14b3e

Please sign in to comment.