Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Wilhelm authored and Florian Wilhelm committed Apr 16, 2015
1 parent f8feac7 commit 5ef11cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Developers
* Florian Wilhelm <Florian.Wilhelm@blue-yonder.com>
* Felix Wick <Felix.Wick@blue-yonder.com>
* Holger Peters <Holger.Peters@blue-yonder.com>

* Uwe Korn <Uwe.Korn@blue-yonder.com>
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
Release Notes
=============

Version 2.1, 2015-??-??
Version 2.1, 2015-04-16
=======================

- Use alabaster as default Sphinx theme
- Parameter data_files is now a section in setup.cfg
- Allow definition of extras_require in setup.cfg
- Added a CHANGES.rst file for logging changes
- Added support for cookiecutter
- FIX: Handle an empty Git repository if necessary

Version 2.0.4, 2015-03-17
=========================
Expand Down
4 changes: 4 additions & 0 deletions pyscaffold/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ def main(args):
# Convert list of
proj_struct = structure.make_structure(args)
structure.create_structure(proj_struct, update=args.update or args.force)
if args.update and not args.force:
note = "Please update your setup.cfg according to:\n" \
"http://pyscaffold.readthedocs.org/en/v{}/configuration.html"
print(note.format(pyscaffold.__version__))
if not args.update and not repo.is_git_repo(args.project):
repo.init_commit_repo(args.project, proj_struct)
repo.add_tag(args.project, "v0.0", "Initial tag to determine PEP440")
Expand Down

0 comments on commit 5ef11cd

Please sign in to comment.