Skip to content

Commit

Permalink
Updating CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Mar 15, 2016
1 parent 7bbb9b3 commit 2cf820c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Changelog of Git Changelog.

## Next release
### Other changes

**Updating CHANGELOG.md**


[31ed435ff58089b](https://github.com/tomasbjerre/git-changelog-lib/commit/31ed435ff58089b) Tomas Bjerre *2016-03-15 17:49:47*


## 1.33
### GitHub [#10](https://github.com/tomasbjerre/git-changelog-lib/issues/10) Authentication with GitHub

**Migrate GitHub REST-API to RetroFit library**
Expand All @@ -29,7 +38,7 @@ Changelog of Git Changelog.

* Also fixing some issues from PR . Removing duplicate Gson, System.out, throwing exceptions.

[ef567e512939e77](https://github.com/tomasbjerre/git-changelog-lib/commit/ef567e512939e77) Tomas Bjerre *2016-03-15 17:11:40*
[4cb3f757f8a6b9f](https://github.com/tomasbjerre/git-changelog-lib/commit/4cb3f757f8a6b9f) Tomas Bjerre *2016-03-15 17:22:33*


### Other changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ public void before() throws Exception {
public void createFullChangelog() throws Exception {
String toFile = repoRoot + "/CHANGELOG.md";
String gitHubToken = System.getenv("GITHUB_OAUTH2TOKEN");
LOG.info("Using token: " + padEnd("", gitHubToken.length(), '*'));
if (gitHubToken == null) {
LOG.info("Not using token");
} else {
LOG.info("Using token: " + padEnd("", gitHubToken.length(), '*'));
}
gitChangelogApiBuilder()//
.withSettings(new File(repoRoot + "/changelog.json").toURI().toURL())//
.withGitHubToken(gitHubToken)//
Expand Down

0 comments on commit 2cf820c

Please sign in to comment.