We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d1b70a commit b33b0c0Copy full SHA for b33b0c0
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
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
9
## 0.3.0
10
11
* Added support for discovering "alternatives" that are implemented with symlinks.
src/whichprovides/__init__.py
@@ -15,7 +15,7 @@
15
from urllib.parse import quote
16
17
__all__ = ["whichprovides", "ProvidedBy"]
18
-__version__ = "0.3.0"
+__version__ = "0.4.0"
19
20
_OS_RELEASE_LINES_RE = re.compile(r"^([A-Z_]+)=(?:\"([^\"]*)\"|(.*))$", re.MULTILINE)
21
_APK_WHO_OWNS_RE = re.compile(r" is owned by ([^\s\-]+)-([^\s]+)$", re.MULTILINE)
0 commit comments