From fad754a0c5e02cbfff9267259dc4269fe917a783 Mon Sep 17 00:00:00 2001 From: Dhanush Kovi <99819848+dkvc@users.noreply.github.com> Date: Fri, 10 Feb 2023 09:05:51 +0000 Subject: [PATCH] Update README.md & Bump version to 1.4.2 --- README.md | 10 ++++++++-- bin/gpkgstatus | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 324c5a7..3be2121 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,16 @@ It allows you to search for a specific package and get information about its cur [![Python Tests](https://github.com/dkvc/gpkgstatus/actions/workflows/python-test.yml/badge.svg?branch=main)](https://github.com/dkvc/gpkgstatus/actions/workflows/python-test.yml) [![CodeQL](https://github.com/dkvc/gpkgstatus/actions/workflows/codeql.yml/badge.svg?branch=main)](https://github.com/dkvc/gpkgstatus/actions/workflows/codeql.yml) +## Current PyPI Status + +[![PyPI version](https://img.shields.io/pypi/v/gpkgstatus)](https://pypi.org/project/gpkgstatus/) +[![Dep Status](https://img.shields.io/librariesio/release/pypi/gpkgstatus)](https://pypi.org/project/gpkgstatus/) +[![Python support](https://img.shields.io/pypi/pyversions/gpkgstatus)](https://pypi.org/project/gpkgstatus/) + ## Current Release Status -[![Last Pre-Release Date](https://img.shields.io/github/release-date-pre/dkvc/gpkgstatus?label=Preview%20Release&)](https://github.com/dkvc/gpkgstatus/releases) -[![Last Release Date](https://img.shields.io/github/release-date/dkvc/gpkgstatus?label=Stable%20Release&)](https://github.com/dkvc/gpkgstatus/releases) +[![Last Pre-Release Date](https://img.shields.io/github/release-date-pre/dkvc/gpkgstatus?label=Github%20Release%20(Preview)&)](https://github.com/dkvc/gpkgstatus/releases) +[![Last Release Date](https://img.shields.io/github/release-date/dkvc/gpkgstatus?label=Github%20Release&)](https://github.com/dkvc/gpkgstatus/releases) ## Features diff --git a/bin/gpkgstatus b/bin/gpkgstatus index 67418c4..b8e1212 100755 --- a/bin/gpkgstatus +++ b/bin/gpkgstatus @@ -14,7 +14,7 @@ if __name__ == "__main__": dv = parser.add_argument('-d', '--distro-version', help='Checks package status for corresponding Fedora version', default="f", nargs=1) parser.add_argument('-f', '--force', help="Sync cached info with Fedora Updates System", action='store_true') parser.add_argument('-l', '--limit', help="Maximum limit on number of packages shown for package search", default="5", nargs=1) - parser.add_argument('-v', '--version', help='Returns gpkgstatus version', action='version', version='1.4.1') + parser.add_argument('-v', '--version', help='Returns gpkgstatus version', action='version', version='1.4.2') args = parser.parse_args() main(vars(args)) diff --git a/setup.py b/setup.py index 3191f7f..e980762 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="gpkgstatus", - version="1.4.1", + version="1.4.2", # also change in bin/gpkgstatus license="GPL-2.0", python_requires=">=3.8", author="Dhanush Kovi",