diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2015-10-01 08:16:37 -0400 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2015-10-01 08:28:31 -0400 |
commit | 4177c75a7c709b615962b1a885c119a51ed0aab0 (patch) | |
tree | 40e5dbc7643fa448fd13b4aa3241195a71baf519 | |
parent | 1a4b8ef1a6bcce344c2852bfa538a5f8d8f399c3 (diff) |
Bump to beta-3
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | pr2relnotes.py | 2 | ||||
-rw-r--r-- | src/rebar.app.src | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -13,7 +13,7 @@ configuration work. rebar also provides dependency management, enabling application writers to easily re-use common libraries from a variety of locations ([hex.pm](http://hex.pm), git, hg, and so on). -3.0 Beta-2 +3.0 Beta-3 ==== [DOCUMENTATION](http://www.rebar3.org/v3.0/docs) diff --git a/pr2relnotes.py b/pr2relnotes.py index 6e9a4f4..7a23fda 100755 --- a/pr2relnotes.py +++ b/pr2relnotes.py @@ -53,7 +53,7 @@ def get_formatted_issue(repo, issue, title, url): """ # Newline support writelines() call which doesn't add newlines # on its own - return("* {}/{}: [{}]({})\n".format(repo, issue, title, url)) + return("* {}/{}: [{}]({})\n".format(repo, issue, title.encode('utf-8'), url)) def gh_get_issue_output(org, repo, issuenum): """ diff --git a/src/rebar.app.src b/src/rebar.app.src index 1777e16..5ab3ddd 100644 --- a/src/rebar.app.src +++ b/src/rebar.app.src @@ -3,7 +3,7 @@ {application, rebar, [{description, "Rebar: Erlang Build Tool"}, - {vsn, "3.0.0-beta-2"}, + {vsn, "git"}, {modules, []}, {registered, []}, {applications, [kernel, |