Skip to content

Commit

Permalink
Fix project description
Browse files Browse the repository at this point in the history
  • Loading branch information
brmmm3 committed Apr 17, 2024
1 parent 6700ba0 commit dcc1d3b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
run: |
twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing target/wheels/* --verbose
twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing target/wheels/*
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.1] - 2024-04-17

### Fixed

- Fixed project description.

## [2.7.0] - 2024-04-15

### Added
Expand Down
6 changes: 6 additions & 0 deletions pyscandir/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.1] - 2024-04-17

### Fixed

- Fixed project description.

## [2.7.0] - 2024-04-15

### Added
Expand Down
6 changes: 3 additions & 3 deletions pyscandir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "scandir_rs"
version = "2.7.0"
version = "2.7.1"
authors = ["Martin Bammer <mrbm74@gmail.com>"]
description = "A fast directory scanner."
description = "A fast file tree scanner written in Rust"
edition = "2021"
license = "MIT"
repository = "https://github.com/brmmm3/scandir-rs"
Expand All @@ -24,7 +24,7 @@ name = "scandir_rs"
crate-type = ["cdylib"]

[dependencies]
scandir = { path = "../scandir", version = "2.7.0" }
scandir = { path = "../scandir", version = "2.7.1" }
speedy = { version = "0.8", optional = true }
bincode = { version = "1.3", optional = true }
serde = { version = "1.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions pyscandir/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
name = "scandir-rs"
version = "2.7.0"
version = "2.7.1"
authors = [{ name = "Martin Bammer", email = "mrbm74@gmail.com" }]
description = "A Rust library for parsing and generating A2L files."
description = "A fast file tree scanner written in Rust"
license = "MIT"
readme = "README.md"
dependencies = []
Expand Down
4 changes: 2 additions & 2 deletions scandir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "scandir"
version = "2.7.0"
version = "2.7.1"
authors = ["Martin Bammer <mrbm74@gmail.com>"]
description = "A fast directory scanner."
description = "A fast file tree scanner written in Rust"
edition = "2021"
license = "MIT"
repository = "https://github.com/brmmm3/scandir-rs"
Expand Down

0 comments on commit dcc1d3b

Please sign in to comment.