Skip to content

Commit

Permalink
Reexport pep440_rs
Browse files Browse the repository at this point in the history
Fixes #19
  • Loading branch information
konstin committed Oct 29, 2024
1 parent eeb69be commit b251533
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pep508_rs"
version = "0.8.0"
version = "0.8.1"
description = "A library for python dependency specifiers, better known as PEP 508"
edition = "2021"
include = ["/src", "Changelog.md", "License-Apache", "License-BSD", "Readme.md", "pyproject.toml"]
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.8.1

- Reexport pep440_rs

# 0.8.0

- Remove rkyv feature
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ pub use marker::{
MarkerValueString, MarkerValueVersion, MarkerWarningKind, StringVersion,
};
pub use normalize::{ExtraName, InvalidNameError, PackageName};
/// Version and version specifiers used in requirements (reexport).
// https://github.com/konstin/pep508_rs/issues/19
pub use pep440_rs;
pub use verbatim_url::{split_scheme, VerbatimUrl};

mod marker;
Expand Down

0 comments on commit b251533

Please sign in to comment.