Skip to content

Commit d6690f1

Browse files
authored
[ENHANCEMENT] General info updated
- General info updated - updating the current version in the app
1 parent 57417f1 commit d6690f1

File tree

6 files changed

+52
-14
lines changed

6 files changed

+52
-14
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ This project contains the `crhc` command line tool that simplifies the use of th
88
<br>
99

1010
**crhc-cli** will work on those versions of python:
11-
- 3.6
12-
- 3.7
13-
- 3.8
14-
- 3.9
11+
- 3.6+
1512
<br>
1613

14+
**Supported Platforms**: At this moment supporting `Linux` and `MS Windows`.
15+
<br><br><br>
16+
17+
1718
Documentation is on [Read the Docs](https://crhc-cli.readthedocs.io). Code repository and issue tracker are on [GitHub](https://github.com/C-RH-C/crhc-cli/).
1819

1920
---

conf/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# Current Version
13-
CURRENT_VERSION = "1.9.9"
13+
CURRENT_VERSION = "1.10.10"
1414

1515
# Some file references
1616

docs/changelog.rst

+36
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
Changelog
22
---------
33

4+
**v1.10.10 - 03/25/2022**
5+
6+
- [ENHANCEMENT] Fixing linters warnings - [`issue 97`_]
7+
- [ENHANCEMENT] Updating end to end test - [`issue 156`_]
8+
- [FIX] #118 - Fixing the api endpoint list - [`issue 118`_]
9+
- [ENHANCEMENT] Removing the square brackets and single quotations marks from installed product - [`issue 152`_]
10+
- [FIX] fixing the kvm dup entries - [`issue 40`_]
11+
12+
.. _issue 97: https://github.com/C-RH-C/crhc-cli/issues/97
13+
.. _issue 156: https://github.com/C-RH-C/crhc-cli/issues/156
14+
.. _issue 118: https://github.com/C-RH-C/crhc-cli/issues/118
15+
.. _issue 152: https://github.com/C-RH-C/crhc-cli/issues/152
16+
.. _issue 40: https://github.com/C-RH-C/crhc-cli/issues/40
17+
18+
19+
20+
**v1.9.9 - 03/01/2022**
21+
22+
- [FIX] Issue when exporting the advisory data - [`issue 149`_]
23+
- [FIX] test updated - [`issue 147`_]
24+
- [ENHANCEMENT] MS version added
25+
- [ENHANCEMENT] Total # of entries added to swatch list_all - [`issue 135`_]
26+
- [ENHANCEMENT] Fixed the time to check for a new version - [`issue 127`_]
27+
- [FIX] Fixing some issues when generating the ts dump - [`issue 136`_]
28+
- [ENHANCEMENT] Adding the GPL 3 license - [`issue 134`_]
29+
- [ENHANCEMENT] fix readme links
30+
- [ENHANCEMENT] some update in the documentation
31+
- [ENHANCEMENT] end to end test added
32+
33+
.. _issue 149: https://github.com/C-RH-C/crhc-cli/issues/149
34+
.. _issue 147: https://github.com/C-RH-C/crhc-cli/issues/147
35+
.. _issue 135: https://github.com/C-RH-C/crhc-cli/issues/135
36+
.. _issue 127: https://github.com/C-RH-C/crhc-cli/issues/127
37+
.. _issue 136: https://github.com/C-RH-C/crhc-cli/issues/136
38+
.. _issue 134: https://github.com/C-RH-C/crhc-cli/pull/134
39+
440

541
**v1.8.8 - 11/06/2021**
642

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
import os
1717
import sys
18-
from conf import conf
18+
# from conf import conf
1919
sys.path.insert(0, os.path.abspath('..'))
2020

2121

@@ -28,8 +28,8 @@
2828
# The full version, including alpha/beta/rc tags
2929

3030
# Pointing to the current conf file with the app version
31-
# release = '1.7.7'
32-
release = conf.CURRENT_VERSION
31+
release = '1.10.10'
32+
# release = conf.CURRENT_VERSION
3333

3434

3535
# -- General configuration ---------------------------------------------------

docs/features.rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ In this section you can see all the available features in ``crhc-cli``
99
* Export of Advisor data, in ``JSON`` and ``CSV`` format.
1010
* Export of Vulnerability data, in ``JSON`` and ``CSV`` format.
1111
* Export of Patch data, in ``JSON`` and ``CSV`` format.
12-
* Subscription Socket summary (spliting hypervisors from VM's).
13-
* Present the list of API endpoints.
12+
* Subscription Socket summary (spliting the sockets from hypervisors and VM's with no host-guest mapping).
13+
* Easy way to present the available API endpoints.
1414
* Easy way to consume the API endpoints listed above.
15-
* Access Token generation to be used with 3rd party software, for example ``curl``. ``$(./crhc token)``
16-
* Export the whole information easily ``./crhc ts dump`` to help the ``Red Hat Support team`` during the troubleshooting process.
15+
* Access Token generation to be used with 3rd party software, for example ``curl -H 'Authorization: Bearer $(./crhc token) ...'``
16+
* Currently supporting both platforms, ``Linux`` and ``MS Windows`` with python 3.6+
17+
* Export the whole information easily via ``./crhc ts dump`` to help the ``Red Hat Support team`` during the troubleshooting process.
1718

1819
Are you looking for something new that is not listed above? Click `here`_ and let us know.
1920

docs/modules.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ crhc-cli
44
.. toctree::
55
:maxdepth: 4
66

7-
crhc
8-
parse
97
conf
108
credential
9+
crhc
1110
execution
1211
help
12+
parse
1313
report
1414
tests
1515
troubleshoot

0 commit comments

Comments
 (0)