-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.20 - Probably Australian #1377
Conversation
shiftkey
commented
Jun 14, 2016
•
edited
Loading
edited
- release notes
- version bump
- integration tests all pass
- 👍 from @haacked or @ryangribble
- tag and publish to NuGet
cdd7af6
to
80421d5
Compare
@@ -276,7 +276,7 @@ public TheDeleteMethod(RepositoriesHooksFixture fixture) | |||
await github.Repository.Hooks.Delete(_fixture.RepositoryOwner, _fixture.RepositoryName, _fixture.ExpectedHook.Id); | |||
var hooks = await github.Repository.Hooks.GetAll(_fixture.RepositoryOwner, _fixture.RepositoryName); | |||
|
|||
Assert.Empty(hooks); | |||
Assert.Equal(4, hooks.Count); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Each test creates the same five hooks, so we need to verify the count of the list to be N-1
@@ -192,7 +192,7 @@ public class TheGetContentsMethod | |||
var archive = await github | |||
.Repository | |||
.Content | |||
.GetArchive("alfhenrik", "ScriptCs.OctoKit", ArchiveFormat.Tarball, "dev"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This branch was removed on the repository 😢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💩 sorry! 😇
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alfhenrik all good, once I realised what was happening it was an easy fix 😀
Pending any feedback on the words from @haacked or @ryangribble this is good to go. Aiming to do it early Wedneday AEST so I have the day to monitor it in case something unexpected occurs... |
|
|
||
**Features** | ||
|
||
Pagination support has been added, letting you control how much data you want |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"has been added" is passive voice and kind of redundant. How about
Pagination support lets you control how much ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, after looking down, I see that "Pagination Support" is being called out in a special manner and isn't in the bulleted list. Maybe we should call out why. For example:
The big focus of this release is pagination support. Pagination support lets you control...
Just a couple minor nits on the release notes. Otherwise, this release is exciting! |
@haacked @ryangribble thanks for the feedback, I'll incorporate that once I'm done with breakfast. |
@ryangribble I'll do another pass over the PRs merged to see if I can find other notable |