Skip to content

Commit

Permalink
Add CHANGELOG for v0.5.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Keshav Priyadarshi <[email protected]>
  • Loading branch information
keshav-space committed Mar 29, 2024
1 parent 9ba58d7 commit d05853d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@ Changelog
=========


v0.5.0
-------
- FetchCode now supports retrieving package info for following generic packages:
pkg:generic/linux
pkg:generic/mtd-utils
pkg:generic/barebox
pkg:generic/e2fsprogs
pkg:generic/udhcp
pkg:generic/miniupnpc
pkg:generic/miniupnpd
pkg:generic/minissdpd
pkg:generic/erofs-utils
pkg:openssl/openssl

- FetchCode also supports retrieving package info for packages hosted on GitHub specifically.
pkg:github/avahi/avahi
pkg:github/bestouff/genext2fs
pkg:github/dosfstools/dosfstools
pkg:github/google/brotli
pkg:github/hewlettpackard/wireless-tools
pkg:github/inotify-tools/inotify-tools
pkg:github/libbpf/bpftool
pkg:github/llvm/llvm-project
pkg:github/nixos/nix
pkg:github/plougher/squashfs-tools
pkg:github/pupnp/pupnp
pkg:github/python/cpython
pkg:github/rpm-software-management/rpm
pkg:github/shadow-maint/shadow
pkg:github/sqlite/sqlite
pkg:github/u-boot/u-boot


v0.4.0
-------
- FetchCode now supports retrieving package info for following generic packages:
Expand Down
5 changes: 2 additions & 3 deletions src/fetchcode/package_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.

# Since there will be no new releases of ipkg, it's better to
# store them in a dictionary rather than fetching them every time.

import dataclasses
import re

Expand Down Expand Up @@ -324,6 +321,8 @@ def get_package_info(cls, gh_purl, package_name):
}


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

0 comments on commit d05853d

Please sign in to comment.