Skip to content

Commit

Permalink
Bump this package to v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjj committed Sep 12, 2014
1 parent d0251c0 commit 6457a73
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.4.7

- Add the SCM properties back to the README template
- This fixes templates not working

## v0.4.6

- Attempt to fix the readme template's path in the data/ dir
Expand Down
1 change: 1 addition & 0 deletions RELEASES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Version Release date
---------------------------
v0.4.7 09/12/2014
v0.4.6 09/11/2014
v0.4.5 09/11/2014
v0.4.4 09/11/2014
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.6
0.4.7
7 changes: 6 additions & 1 deletion ansigenome/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,12 @@ def set_readme_template_vars(self, role, repo_name):
"email": self.config["author_email"],
"twitter": self.config["author_twitter"],
}
scm = {}
scm = {
"host": self.config["scm_host"],
"repo_prefix": self.config["scm_repo_prefix"],
"type": self.config["scm_type"],
"user": self.config["scm_user"],
}
license = {
"type": self.config["license_type"],
"url": self.config["license_url"],
Expand Down

0 comments on commit 6457a73

Please sign in to comment.