From e80a76e04ae7041ca80da4dce5230f4509eaf647 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Tue, 13 Feb 2018 08:49:52 -0500 Subject: [PATCH 1/8] Initializes provisional dev version --- CHANGELOG.md | 10 ++++++++++ setup.cfg | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8021554dc..c133bab85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ ## Changelog +### x.x.x + +**Commit Delta**: [Change from 0.9.0 release](https://github.com/plus3it/watchmaker/compare/0.9.0...x.x.x) + +**Released**: PLACEHOLDER + +**Summary**: + +* PLACEHOLDER + ### 0.9.0 **Commit Delta**: [Change from 0.8.0 release](https://github.com/plus3it/watchmaker/compare/0.8.0...0.9.0) diff --git a/setup.cfg b/setup.cfg index 5baa0b8c9..27c13432f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = watchmaker description = Applied Configuration Management -version = 0.9.0 +version = 0.9.1.dev author = Plus3IT Maintainers of Watchmaker author_email = projects@plus3it.com url = https://github.com/plus3it/watchmaker From d881b9da481b1307779fa74c38f668b1a09f5b61 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 13 Feb 2018 09:31:58 -0500 Subject: [PATCH 2/8] Update flake8-print from 3.0.1 to 3.1.0 --- requirements/check.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/check.txt b/requirements/check.txt index c0603c488..52e32783b 100644 --- a/requirements/check.txt +++ b/requirements/check.txt @@ -5,7 +5,7 @@ flake8-builtins==1.0.post0 flake8-docstrings==1.3.0 flake8-isort==2.3 flake8-future-import==0.4.4 -flake8-print==3.0.1 +flake8-print==3.1.0 m2r==0.1.12 pep8-naming==0.5.0 pydocstyle==2.1.1 From 867f56d6fe7e4e94cd13d2de2f1acb28f22504c9 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Tue, 13 Feb 2018 08:43:18 -0500 Subject: [PATCH 3/8] Sets name and body when deploying to GitHub releases --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 642458520..c57ce9780 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,8 @@ before_deploy: elif [ "$TRAVIS_BRANCH" = "master" ] then WAM_VERSION=$(grep "version = " $TRAVIS_BUILD_DIR/setup.cfg | sed "s/version = //") - export WAM_VERSION + WAM_BODY = "* [Watchmaker v$WAM_VERSION CHANGELOG](https://github.com/plus3it/watchmaker/blob/$WAM_VERSION/CHANGELOG.md)" + export WAM_VERSION WAM_BODY (set -x; git tag -a $WAM_VERSION -m $WAM_VERSION) fi deploy: @@ -93,7 +94,9 @@ deploy: repo: plus3it/watchmaker condition: '"$TOXENV" == *"py27"*' - provider: releases + name: $WAM_VERSION tag_name: $WAM_VERSION + body: $WAM_BODY draft: true skip_cleanup: true api_key: From c50ec34e7c6aa39ee87c1e2030188cdcc6d8f719 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 14 Feb 2018 02:25:20 -0500 Subject: [PATCH 4/8] Update m2r from 0.1.12 to 0.1.13 --- requirements/check.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/check.txt b/requirements/check.txt index 52e32783b..138986152 100644 --- a/requirements/check.txt +++ b/requirements/check.txt @@ -6,7 +6,7 @@ flake8-docstrings==1.3.0 flake8-isort==2.3 flake8-future-import==0.4.4 flake8-print==3.1.0 -m2r==0.1.12 +m2r==0.1.13 pep8-naming==0.5.0 pydocstyle==2.1.1 pygments==2.2.0 From 4d144a76997977b8a5e4bc38e6f8411a79c154cb Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 14 Feb 2018 02:25:21 -0500 Subject: [PATCH 5/8] Update m2r from 0.1.12 to 0.1.13 --- requirements/docs.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/docs.txt b/requirements/docs.txt index e0871ab27..242fac5b2 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,4 +1,4 @@ -m2r==0.1.12 +m2r==0.1.13 setuptools==38.5.1 sphinx==1.6.7 sphinx-rtd-theme==0.2.4 From f71e6d20f9dd2b62b7b69e924bceda9ee75b9736 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Thu, 15 Feb 2018 10:48:52 -0500 Subject: [PATCH 6/8] Manages version using bumpversion --- .bumpversion.cfg | 14 ++++++++++++++ MANIFEST.in | 1 + 2 files changed, 15 insertions(+) create mode 100644 .bumpversion.cfg diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 000000000..71f5cd616 --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,14 @@ +[bumpversion] +current_version = 0.9.1.dev +commit = False +tag = False +tag_name = {new_version} + +[bumpversion:file:setup.cfg] + +[bumpversion:file:CHANGELOG.md] +search = x.x.x + +[bumpversion:part:release] +values = + dev diff --git a/MANIFEST.in b/MANIFEST.in index 92935b72a..2d801068b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,7 @@ graft requirements graft src graft tests +include .bumpversion.cfg include .coveragerc include .editorconfig include .gitmodules From dfd44ce33462dc86ec82beb483380601b8a53888 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 13 Feb 2018 09:31:44 -0500 Subject: [PATCH 7/8] Update sphinx from 1.6.7 to 1.7.0 --- requirements/docs.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/docs.txt b/requirements/docs.txt index 242fac5b2..798c26c02 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,4 +1,4 @@ m2r==0.1.13 setuptools==38.5.1 -sphinx==1.6.7 +sphinx==1.7.0 sphinx-rtd-theme==0.2.4 From 075305a3d06f2f33efd54dfad2435a594deb5588 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Fri, 16 Feb 2018 15:44:26 -0500 Subject: [PATCH 8/8] Prepares 0.9.1 release --- .bumpversion.cfg | 5 +++-- CHANGELOG.md | 9 +++++---- setup.cfg | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 71f5cd616..d622479d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1.dev +current_version = 0.9.1 commit = False tag = False tag_name = {new_version} @@ -10,5 +10,6 @@ tag_name = {new_version} search = x.x.x [bumpversion:part:release] -values = +values = dev + diff --git a/CHANGELOG.md b/CHANGELOG.md index c133bab85..c170231b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,15 @@ ## Changelog -### x.x.x +### 0.9.1 -**Commit Delta**: [Change from 0.9.0 release](https://github.com/plus3it/watchmaker/compare/0.9.0...x.x.x) +**Commit Delta**: [Change from 0.9.0 release](https://github.com/plus3it/watchmaker/compare/0.9.0...0.9.1) -**Released**: PLACEHOLDER +**Released**: 2018.02.17 **Summary**: -* PLACEHOLDER +* dotnet4-formula + - Passes version correctly to module.run ### 0.9.0 diff --git a/setup.cfg b/setup.cfg index 27c13432f..a63c5dd74 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = watchmaker description = Applied Configuration Management -version = 0.9.1.dev +version = 0.9.1 author = Plus3IT Maintainers of Watchmaker author_email = projects@plus3it.com url = https://github.com/plus3it/watchmaker