From f215dcc12c183b6ba50d0dce067ff4f516333a18 Mon Sep 17 00:00:00 2001 From: Luke Cartey <5377966+lcartey@users.noreply.github.com> Date: Tue, 8 Nov 2022 15:55:51 +0000 Subject: [PATCH 1/2] Update developer handbook to exclude C90 --- docs/development_handbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development_handbook.md b/docs/development_handbook.md index 898fed7542..93fe64fc2c 100644 --- a/docs/development_handbook.md +++ b/docs/development_handbook.md @@ -82,7 +82,7 @@ For each supported coding standard we will provide: These packs will be organized by supported language. The current supported languages are: - C++14 standardized by [ISO/IEC 14882:2014](https://www.iso.org/standard/64029.html) located in the directory `cpp`. -- C90 standardized by [ISO/IEC 9899:1990](https://www.iso.org/standard/17782.html), [C99] standardized by [ISO/IEC 9899:1999](https://www.iso.org/standard/29237.html), and C11 standardized by [ISO/IEC 9899:2011](https://www.iso.org/standard/57853.html). All are located in the directory `c`. +- [C99] standardized by [ISO/IEC 9899:1999](https://www.iso.org/standard/29237.html) and C11 standardized by [ISO/IEC 9899:2011](https://www.iso.org/standard/57853.html). All are located in the directory `c`. For each language, we will also include: 1. A CodeQL query pack containing "common" libraries, which provide support. From c472266969ad61f5f94b5708a688cffbe03d408d Mon Sep 17 00:00:00 2001 From: Luke Cartey <5377966+lcartey@users.noreply.github.com> Date: Tue, 8 Nov 2022 16:00:26 +0000 Subject: [PATCH 2/2] Add change log entry for C90 removal --- docs/development_handbook.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/development_handbook.md b/docs/development_handbook.md index 93fe64fc2c..d35c03f2d2 100644 --- a/docs/development_handbook.md +++ b/docs/development_handbook.md @@ -32,6 +32,7 @@ | 0.24.0 | 2022-07-05 | Remco Vermeulen | Update release process to include steps for external help files. | | 0.25.0 | 2022-07-22 | Jeroen Ketema | Document the existence and purpose of the `next` branch. | | 0.26.0 | 2022-08-10 | Remco Vermeulen | Address incorrect package file generation command. This was missing the required language argument. | +| 0.27.0 | 2022-11-08 | Luke Cartey | Update the versions of C we intend to support to exclude C90, which reflects the intended scope at the outset of the project. | ## Scope of work