-
-
Notifications
You must be signed in to change notification settings - Fork 600
Allow fetch prerelease #495
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
Changes from 4 commits
02d317c
81470c5
4962728
33f78ff
b3fd99e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,12 @@ Provides information about releases for a repository. Wraps [GitHub Releases API | |
$release = $client->api('repo')->releases()->latest('twbs', 'bootstrap'); | ||
``` | ||
|
||
The ```latest()``` method fetches only releases which are not marked "prerelease." | ||
|
||
To obtain the latest release *including prereleases*, select the first element in the "all releases" function: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. *including* prereleases and drafts, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. auth is required for drafts. I've added that to the doc also |
||
``` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ```php |
||
$release = $client->api('repo')->releases()->all('username', 'repo')[0]; | ||
``` | ||
### List releases for a tag | ||
|
||
```php | ||
|
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.
You should only use one backtick at each side of the word.
`latest()`
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.
"prerelease" and "draft".