Skip to content

Commit 0abfa2b

Browse files
committed
Fix #72, Create CHANGELOG.md
1 parent f569bf5 commit 0abfa2b

File tree

2 files changed

+84
-75
lines changed

2 files changed

+84
-75
lines changed

CHANGELOG.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Changelog
2+
3+
## Development Build: v1.3.0-rc4+dev14
4+
5+
- Update Copyright Headers
6+
- Standardize version.h
7+
- See <https://github.com/nasa/osal/pull/67> and <https://github.com/nasa/cFS/445>
8+
9+
## Development Build: v1.3.0-rc4+dev7
10+
11+
- Remove explicit filename doxygen comments
12+
- See <https://github.com/nasa/cFS/pull/432>
13+
14+
## Development Build: v1.3.0-rc4+dev2
15+
16+
- Set baseline for cFS-Caelum-rc4: v1.3.0-rc4
17+
- Update mission rev to use 0xFF for development version
18+
- See <https://github.com/nasa/cfs/pull/390>
19+
20+
## Development Build: v1.2.0-rc1+dev33
21+
22+
- Add printf conversion casts to fix Raspberry-Pi4 compilation error
23+
- Cast ssize_t to long and uint32 to unsigned long for printf.
24+
- This matches the %d and %lX conversions, respectively.
25+
- Implement Coding Standard in CodeQL
26+
- See <https://github.com/nasa/tblCRCTool/pull/52> and <https://github.com/nasa/cFS/pull/270>
27+
28+
## Development Build: v1.2.0-rc1+dev25
29+
30+
- Add Testing Tools to the Security Policy
31+
- Check lseek return and exit/error processing updates
32+
- See <https://github.com/nasa/tblCRCTool/pull/89>
33+
34+
## Development Build: v1.2.0-rc1+dev19
35+
36+
- Changes CLI "help" option to use two dashes: `--help`
37+
- Adds static analysis and format check to continuous integration workflow. Adds workflow status badges to ReadMe.
38+
- Adds CodeQL Analysis to continuous integration workflow.
39+
- See <https://github.com/nasa/tblCRCTool/pull/35>
40+
41+
## Development Build: v1.2.0-rc1+dev12
42+
43+
- Documentation: Add `Security.md` with instructions on reporting vulnerabilities
44+
- Removes unimplemented CRC cases to eliminate static analysis warnings
45+
- See <https://github.com/nasa/tblCRCTool/pull/29>
46+
47+
## Development Build: v1.2.0-rc1+dev3
48+
49+
- Use `sizeof()` instead of a hard coded value for the table file header size to keep this tool in sync if the size of the cFE file or table header should ever change.
50+
- Update version baseline to v1.2.0-rc1
51+
- Set REVISION number to 99 to indicate development version
52+
- See <https://github.com/nasa/tblCRCTool/pull/25>
53+
54+
## Development Build: 1.1.0+dev7
55+
56+
- Create a version header file
57+
- Report version when responding to `-help` command
58+
- See <https://github.com/nasa/tblCRCTool/pull/22>
59+
60+
## Development Build: 1.1.1
61+
62+
- Apply Code Style
63+
- See <https://github.com/nasa/tblCRCTool/pull/18>
64+
65+
## **_OFFICIAL RELEASE: 1.1.0 - Aquila_**
66+
67+
- Minor updates (see https://github.com/nasa/tblCRCTool/pull/12)
68+
- Released as part of cFE 6.7.0, Apache 2.0
69+
70+
## **_OFFICIAL RELEASE: 1.0.0a_**
71+
72+
- Released as part of cFE 6.6.0a, Apache 2.0
73+
74+
NOTE - there are other parameter set management schemes used with the cFS (JSON, csv, etc) which may be more applicable for modern missions. Contact the community as detailed below for more information.
75+
76+
## Known issues
77+
78+
This ground utility was developed for a specific mission/configuration, and may not be applicable for general use.
79+
80+
## Getting Help
81+
82+
For best results, submit issues:questions or issues:help wanted requests at https://github.com/nasa/cFS.
83+
84+
Official cFS page: http://cfs.gsfc.nasa.gov

README.md

-75
Original file line numberDiff line numberDiff line change
@@ -7,81 +7,6 @@ This repository contains NASA's Table CRC Generator Tool (tblCRCTool), which is
77

88
This lab application is a ground utility to generate binary table CRCs for cFS. It is intended to be located in the `tools/tblCRCTool` subdirectory of a cFS Mission Tree. The Core Flight System is bundled at https://github.com/nasa/cFS (which includes this tool as a submodule), which includes build and execution instructions.
99

10-
## Version Notes
11-
12-
### Development Build: v1.3.0-rc4+dev14
13-
14-
- Update Copyright Headers
15-
- Standardize version.h
16-
- See <https://github.com/nasa/osal/pull/67> and <https://github.com/nasa/cFS/445>
17-
18-
### Development Build: v1.3.0-rc4+dev7
19-
20-
- Remove explicit filename doxygen comments
21-
- See <https://github.com/nasa/cFS/pull/432>
22-
23-
### Development Build: v1.3.0-rc4+dev2
24-
25-
- Set baseline for cFS-Caelum-rc4: v1.3.0-rc4
26-
- Update mission rev to use 0xFF for development version
27-
- See <https://github.com/nasa/cfs/pull/390>
28-
29-
### Development Build: v1.2.0-rc1+dev33
30-
31-
- Add printf conversion casts to fix Raspberry-Pi4 compilation error
32-
- Cast ssize_t to long and uint32 to unsigned long for printf.
33-
- This matches the %d and %lX conversions, respectively.
34-
- Implement Coding Standard in CodeQL
35-
- See <https://github.com/nasa/tblCRCTool/pull/52> and <https://github.com/nasa/cFS/pull/270>
36-
37-
### Development Build: v1.2.0-rc1+dev25
38-
39-
- Add Testing Tools to the Security Policy
40-
- Check lseek return and exit/error processing updates
41-
- See <https://github.com/nasa/tblCRCTool/pull/89>
42-
43-
### Development Build: v1.2.0-rc1+dev19
44-
45-
- Changes CLI "help" option to use two dashes: `--help`
46-
- Adds static analysis and format check to continuous integration workflow. Adds workflow status badges to ReadMe.
47-
- Adds CodeQL Analysis to continuous integration workflow.
48-
- See <https://github.com/nasa/tblCRCTool/pull/35>
49-
50-
### Development Build: v1.2.0-rc1+dev12
51-
52-
- Documentation: Add `Security.md` with instructions on reporting vulnerabilities
53-
- Removes unimplemented CRC cases to eliminate static analysis warnings
54-
- See <https://github.com/nasa/tblCRCTool/pull/29>
55-
56-
### Development Build: v1.2.0-rc1+dev3
57-
58-
- Use `sizeof()` instead of a hard coded value for the table file header size to keep this tool in sync if the size of the cFE file or table header should ever change.
59-
- Update version baseline to v1.2.0-rc1
60-
- Set REVISION number to 99 to indicate development version
61-
- See <https://github.com/nasa/tblCRCTool/pull/25>
62-
63-
### Development Build: 1.1.0+dev7
64-
65-
- Create a version header file
66-
- Report version when responding to `-help` command
67-
- See <https://github.com/nasa/tblCRCTool/pull/22>
68-
69-
### Development Build: 1.1.1
70-
71-
- Apply Code Style
72-
- See <https://github.com/nasa/tblCRCTool/pull/18>
73-
74-
### **_OFFICIAL RELEASE: 1.1.0 - Aquila_**
75-
76-
- Minor updates (see https://github.com/nasa/tblCRCTool/pull/12)
77-
- Released as part of cFE 6.7.0, Apache 2.0
78-
79-
### **_OFFICIAL RELEASE: 1.0.0a_**
80-
81-
- Released as part of cFE 6.6.0a, Apache 2.0
82-
83-
NOTE - there are other parameter set management schemes used with the cFS (JSON, csv, etc) which may be more applicable for modern missions. Contact the community as detailed below for more information.
84-
8510
## Known issues
8611

8712
This ground utility was developed for a specific mission/configuration, and may not be applicable for general use.

0 commit comments

Comments
 (0)