From c0645ee89f154b2ba92e73f727bfe1c6ab4be2d6 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Mon, 8 Jan 2018 10:44:04 +0900 Subject: [PATCH] Create PULL_REQUEST_TEMPLATE.md --- PULL_REQUEST_TEMPLATE.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..003558f --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,23 @@ +### Description of Change ### + +Describe your changes here. + +### Bugs Fixed ### + +- Provide links to bugs here + +### API Changes ### + +List all API changes here (or just put None), example: + +Added: + - SafeBundleHandle Bundle.SafeBundleHandle { get; } // Property + - void Bundle.AddItem(string key, string value); + +Changed: + - object Bundle.ReceiveItem(string key) => object Bundle.GetItem(string key); + +### Behavioral Changes ### + +Describe any non-bug related behavioral changes that may change how users app behaves when upgrading to this version of the codebase. + -- 2.7.4