Skip to content

Commit b33b0c0

Browse files
committed
v0.4.0
1 parent 7d1b70a commit b33b0c0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.4.0
4+
5+
* Added support for multiple file paths to CLI.
6+
* Added prioritization of package information providers to favor
7+
faster providers over slow ones.
8+
39
## 0.3.0
410

511
* Added support for discovering "alternatives" that are implemented with symlinks.

src/whichprovides/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from urllib.parse import quote
1616

1717
__all__ = ["whichprovides", "ProvidedBy"]
18-
__version__ = "0.3.0"
18+
__version__ = "0.4.0"
1919

2020
_OS_RELEASE_LINES_RE = re.compile(r"^([A-Z_]+)=(?:\"([^\"]*)\"|(.*))$", re.MULTILINE)
2121
_APK_WHO_OWNS_RE = re.compile(r" is owned by ([^\s\-]+)-([^\s]+)$", re.MULTILINE)

0 commit comments

Comments
 (0)