Skip to content

Commit 7d38d0f

Browse files
authored
Create the V7 Feature Tracking Log in "admin" (#14)
* Create v7-feature-tracker.md * Update README.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md Add another new feature * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md * Update v7-feature-tracker.md
1 parent edfe37a commit 7d38d0f

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,12 @@ This version is stored in this branch as a base markdown version to compare with
742742
- [§D.5.2](standard/documentation-comments.md#d52-resulting-xml) Resulting XML
743743
- [§E](standard/bibliography.md#e-**bibliography**) **Bibliography**
744744

745+
## Admin folder
746+
747+
A home for adminstrative files (such as [eventually] meeting agendas and minutes).
748+
749+
For now, it contains separate logs for the work going on to add V6 (and then V7) features.
750+
745751
## Tools folder
746752

747753
This folder contains tools related to maintaining and converting the ECMA C# spec (ECMA-354).

admin/v7-feature-tracker.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## V7 Feature List and Current Status
2+
3+
This file identifies the known V7 features and tracks their status. Although there were minor "dot" releases of V7, committee ECMA TC49/TG2 plans to combine all 7.x features into one V7 spec.
4+
5+
Version | Feature | PR | Status | Notes
6+
------- | ------- | -- | ------ | ------
7+
7.0 | binary integer literals | [45](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/45) | Open | Combination #1
8+
7.0 | embedded digit separators in numeric literals | [45](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/45) | Open | Combination #1
9+
7.0 | `out` variables | [44](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/44) | Open | Combination #2
10+
7.0 | Discards | [44](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/44) | Open | Combination #2
11+
7.0 | Tuples | [63](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/63) **but needs some work** | Open | Combination #3
12+
7.0 | Pattern Matching | [61](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/61) | Open | Combination #3
13+
7.0 | `ref` locals and returns | [213](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/213) | Open | Combination #4
14+
7.0 | Local Functions | [104](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/104) | Open |
15+
7.0 | More expression-bodied members | [69](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/69) | Open |
16+
7.0 | `throw` Expressions | [65](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/65) **but needs some work** | Open |
17+
7.0 | Generalized `async` return types | | Open |
18+
7.1 | `async Main` method | [70](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/70) | Open |
19+
7.1 | `default` literal expressions | [236](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/236) | Open |
20+
7.1 | Inferred tuple element names | [63](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/63) **but needs some work** | Open |
21+
7.1 | Pattern matching on generic type parameters | [61](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/61) | Open | Combination #3
22+
7.2 | leading digit separators in bin/hex integer literals | [45](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/45) | Open | Combination #1
23+
7.2 | Non-trailing named arguments | [216](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/216) | Open | |
24+
7.2 | `private protected` access modifier | [215](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/215) | Open |
25+
7.2 | Conditional `ref` expressions | [213](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/213) | Open | Combination #4
26+
7.2 | `in` parameter modifier | [219](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/219) | Open | Combination #5
27+
7.2 | `ref` with `this` in extension methods | [219](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/219) | Open | Combination #5
28+
7.2 | `readonly` and `ref` structs | **In progress** | Open |
29+
7.3 | indexing movable fixed buffer without pinning | [239](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/239) | Open |
30+
7.3 | reassign `ref` local variables | [213](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/213) | Open | Combination #4
31+
7.3 | use initializers on `stackalloc` arrays | [238](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/238) | Open |
32+
7.3 | Support for Pattern-Based `fixed` Statements | [240](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/240) | Open |
33+
7.3 | use additional generic constraints | [244](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/244) | Open |
34+
7.3 | test `==` and `!=` with tuple types | [63](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/63) **but needs some work** | Open | Combination #3
35+
7.3 | use expression variables in more locations | [44](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/44), [61](https://github.com/ECMA-TC49-TG2/csharpstandard/pull/61) | Open | Combination #2 & #3
36+
7.3 | attach attributes to the backing field of auto-implemented properties | [262](https://github.com/dotnet/csharpstandard/pull/262) | Open |
37+
7.3 | overload resolution now has fewer ambiguous cases | [263](https://github.com/dotnet/csharpstandard/pull/263) | Open |

0 commit comments

Comments
 (0)