diff --git a/CHANGELOG.md b/CHANGELOG.md index f059c01e..5cd226b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.4.1] - 2021-07-08 +### Fixed +* `--download` option works for asset downloads, as long as there is one asset + ## [1.4.0] - 2021-06-27 ### Added * Now it's easy get OS versions. Just run `lastversion ubuntu` or something diff --git a/lastversion/GitHubRepoSession.py b/lastversion/GitHubRepoSession.py index 53177e39..d36af9be 100644 --- a/lastversion/GitHubRepoSession.py +++ b/lastversion/GitHubRepoSession.py @@ -280,7 +280,6 @@ def find_in_tags_via_graphql(self, ret, pre_ok, major): } } - """ cursor = '' diff --git a/lastversion/__about__.py b/lastversion/__about__.py index 96e3ce8d..8e3c933c 100644 --- a/lastversion/__about__.py +++ b/lastversion/__about__.py @@ -1 +1 @@ -__version__ = '1.4.0' +__version__ = '1.4.1' diff --git a/lastversion/utils.py b/lastversion/utils.py index b37c281b..2e3e4ccf 100644 --- a/lastversion/utils.py +++ b/lastversion/utils.py @@ -41,7 +41,7 @@ class BadProjectError(Exception): # this is all too simple for now non_amd64_markers = ['i386', 'i686', 'arm', 'arm64', '386', 'ppc64', 'armv7', 'armv7l', - 'mips64', 'ppc64', 'mips64le', 'ppc64le', 'aarch64'] + 'mips64', 'ppc64', 'mips64le', 'ppc64le', 'aarch64'] def asset_does_not_belong_to_machine(asset):