Skip to content

Commit 81d95fa

Browse files
committed
Add CHANGELOG for v0.5.0 release
Signed-off-by: Keshav Priyadarshi <[email protected]>
1 parent 9ba58d7 commit 81d95fa

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

Diff for: CHANGELOG.rst

+33
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@ Changelog
22
=========
33

44

5+
v0.5.0
6+
-------
7+
- FetchCode now supports retrieving package info for following generic packages:
8+
* pkg:generic/linux
9+
* pkg:generic/mtd-utils
10+
* pkg:generic/barebox
11+
* pkg:generic/e2fsprogs
12+
* pkg:generic/udhcp
13+
* pkg:generic/miniupnpc
14+
* pkg:generic/miniupnpd
15+
* pkg:generic/minissdpd
16+
* pkg:generic/erofs-utils
17+
* pkg:openssl/openssl
18+
19+
- FetchCode also supports retrieving package info for packages hosted on GitHub specifically.
20+
* pkg:github/avahi/avahi
21+
* pkg:github/bestouff/genext2fs
22+
* pkg:github/dosfstools/dosfstools
23+
* pkg:github/google/brotli
24+
* pkg:github/hewlettpackard/wireless-tools
25+
* pkg:github/inotify-tools/inotify-tools
26+
* pkg:github/libbpf/bpftool
27+
* pkg:github/llvm/llvm-project
28+
* pkg:github/nixos/nix
29+
* pkg:github/plougher/squashfs-tools
30+
* pkg:github/pupnp/pupnp
31+
* pkg:github/python/cpython
32+
* pkg:github/rpm-software-management/rpm
33+
* pkg:github/shadow-maint/shadow
34+
* pkg:github/sqlite/sqlite
35+
* pkg:github/u-boot/u-boot
36+
37+
538
v0.4.0
639
-------
740
- FetchCode now supports retrieving package info for following generic packages:

Diff for: src/fetchcode/package_util.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations under the License.
1616

17-
# Since there will be no new releases of ipkg, it's better to
18-
# store them in a dictionary rather than fetching them every time.
19-
2017
import dataclasses
2118
import re
2219

@@ -324,6 +321,8 @@ def get_package_info(cls, gh_purl, package_name):
324321
}
325322

326323

324+
# Since there will be no new releases of ipkg, it's better to
325+
# store them in a dictionary rather than fetching them every time.
327326
IPKG_RELEASES = {
328327
"0.99.88": {
329328
"url": "https://web.archive.org/web/20090326020239/http:/handhelds.org/download/packages/ipkg/ipkg-0.99.88.tar.gz",

0 commit comments

Comments
 (0)