From f96102812076629004d7fce7bded7faea69acc84 Mon Sep 17 00:00:00 2001 From: Yacine Petitprez Date: Sun, 24 Jun 2018 15:32:12 +0200 Subject: [PATCH 1/3] Create PULL_REQUEST_TEMPLATE.md --- PULL_REQUEST_TEMPLATE.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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 000000000..fc2631470 --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,29 @@ + + +## Description + + +## Motivation and Context + + + +## How Has This Been Tested? + + + + +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) + + +- [ ] Manual of usage of the new feature. + +## Checklist: + + +- [ ] My code follows the code style of this project. `bin/ameba` ran without alert. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. From 69eadb76d9e79d19adcad4d40d03bb6eacdc0ee3 Mon Sep 17 00:00:00 2001 From: Yacine Petitprez Date: Sun, 24 Jun 2018 15:37:18 +0200 Subject: [PATCH 2/3] Fix code issue in the basic example --- manual/BasicExample.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/BasicExample.md b/manual/BasicExample.md index 65cef1885..08a131ad9 100644 --- a/manual/BasicExample.md +++ b/manual/BasicExample.md @@ -14,7 +14,7 @@ they are covered in other articles of this wiki ! `echo "CREATE DATABASE sample_for_wiki;" | psql -U postgres` # Unleash the kraken !!! -require "../../src/clear" +require "clear" # Initialize the connection Clear::SQL.init("postgres://postgres@localhost/sample_for_wiki") @@ -189,4 +189,4 @@ User.query.with_posts(&.published).limit(5).each do |user| end pause -``` \ No newline at end of file +``` From 83bb4be196d58a8bf5e7032b27d13078f0c1b786 Mon Sep 17 00:00:00 2001 From: Yacine Petitprez Date: Sun, 24 Jun 2018 15:45:08 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f173d97c8..589a2b039 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v0.1.4alpha +# master/HEAD ## Breaking changes - Migration to crystal 0.25. @@ -97,4 +97,4 @@ Document.query.all.each do |document| puts document.to_html end -``` \ No newline at end of file +```