├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This repo doesn't accept issues. Please see README.md in the root for more details. -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This repo doesn't accept pull requests. Please see README.md in the root for more details. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Announcements 2 | 3 | This repo is for team announcements only. To file a bug or start a discussion, please create a new issue on [NuGet client](https://github.com/nuget/home/issues) or [NuGet server](https://github.com/nuget/NuGetGallery/issues). 4 | 5 | All items posted (as [issues](https://github.com/NuGet/Announcements/issues)) to this repo are locked, but will typically have links to separate discussion threads on one of the NuGet repos. Please use those discussion threads for questions and comments about a particular announcement. 6 | 7 | ## Receiving Notifications 8 | 9 | Subscribe to this repo to be notified about major changes, upcoming features and other noteworthy announcements in NuGet. 10 | 11 | ![subscribe](https://user-images.githubusercontent.com/14800916/29544263-bea081fa-869b-11e7-9c18-b576890ba049.png) 12 | 13 | ## Using the Issues list 14 | 15 | Use the [Feature](https://github.com/nuget/Announcements/labels/Feature) and [Breaking Change](https://github.com/nuget/Announcements/labels/Breaking%20Change) labels to see what's new and changed. 16 | 17 | New feature announcements will have one of the following labels: 18 | * [Reviewing](https://github.com/nuget/Announcements/labels/Reviewing) - Feature being proposed and is undergoing review within the team and the community. 19 | * [Reviewed](https://github.com/nuget/Announcements/labels/Reviewed) - Feature has been reviewed and necessary feedback incorporated. The feature is ready to be implemented. 20 | * [Implemented](https://github.com/nuget/Announcements/labels/Implemented) - Feature has been implemented. 21 | 22 | --------------------------------------------------------------------------------