From e8224e8f4c61035048b5967d66c569de46fc2c75 Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Tue, 21 May 2019 11:27:49 +0200 Subject: [PATCH 1/2] Add gitub templates --- .github/ISSUE_TEMPLATE.md | 27 +++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 20 ++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..c9d529a5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,27 @@ +Hi there! + +I really enjoy OpenFisca-Survey-Manager, but I recently encountered an issue. + +### Here is what I did: + + +### Here is what I expected to happen: + + +### Here is what actually happened: + + +### Here is data (or links to it) that can help you reproduce this issue: + + + +## Context + +I identify more as a: + +- Economist _(I make microsimulations with real populations)_. +- Developer _(I create tools that use OpenFisca-Survey-Manager)_. +- Commenter _(I make data visualisations)_. +- LexImpact _(I model reforms to make them exist)_. + +(remove this line as well as all items in the list that don't fit your situation) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..c74fa4c7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,20 @@ +Thanks for contributing to OpenFisca-Survey-Manager! Remove this line, as well as any other in the following that don't fit your contribution :) + +#### Breaking changes + +- In _some module_: + - Remove… + +#### New features + +- Introduce `some_function()` + - Allows for… + +#### Deprecations + +- Deprecate `some_function`. + - The functionality is now provided by… + +#### Technical changes + +- Rename `private_function`. From 84653141541096529561ec0e656cee63401ab329 Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Tue, 21 May 2019 11:28:42 +0200 Subject: [PATCH 2/2] Bump --- CHANGELOG.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df3d709..9455e0b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.22 [#123](https://github.com/openfisca/openfisca-survey-manager/pull/123) + +* Add github templates + ## 0.21 [#122](https://github.com/openfisca/openfisca-survey-manager/pull/122) * Use SimulationBuilder.join_with_persons to initialize entites diff --git a/setup.py b/setup.py index e7210da8..f3e619df 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( name = 'OpenFisca-Survey-Manager', - version = '0.20', + version = '0.20.1', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier],