Skip to content

Commit 8f3598b

Browse files
committed
Bump to 0.3.0
1 parent a62ccc0 commit 8f3598b

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

NEWS.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
1-
API Changes for 0.2.0:
1+
Changes for 0.3.0:
2+
3+
* Re-instantiate the Blobs API.
4+
* `repoDescription1 and `repoPushedAt` are a `Maybe GithubDate`.
5+
* Add `deleteRepo`, `editRepo`, and `createRepo`.
6+
* Private gists, issues, organizations, pull requests, and users.
7+
* Lock down `tls` and `tls-extra` instead of keeping up with the
8+
ever-changing `http-conduit` package.
9+
* Features by [Pavel Ryzhov](https://github.com/paulrzcz) and [Simon Hengel](https://github.com/sol).
10+
11+
Changes for 0.2.1:
12+
13+
* Expand the unordered-containers dependency to anything in 0.1.x .
14+
15+
Changes for 0.2.0:
216

317
* `milestoneDueOn` and `repoLanguage` are now `Maybe` types.
418
* Introduce `GithubOwner` as the sum type for a `GithubUser` or `GithubOrganization`. Everything that once produced a `GithubUser` now produces a `GithubOwner`. All record accessors have changed their names
519
* Similar to `GithubOwner`, introduce `DetailedOwner`, which can be a `DetailedUser` or a `DetailedOrganization`. All record accessors have changed their names
620
* An `HTTPConnectionError` now composes `SomeException` instead of `IOException`. All exceptions raised by the underlying http-conduit library are encapulated there.
721
* The `githubIssueClosedBy` function now produces a `Maybe GithubOwner`.
822
* Remove the Blobs API, as it is broken upstream.
9-
10-
Bugs found and squashed thanks to [Joey Hess](https://github.com/joeyh) and [Simon Hengel](https://github.com/sol).
23+
* Bugs found and squashed thanks to [Joey Hess](https://github.com/joeyh) and [Simon Hengel](https://github.com/sol).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Github
33

44
The Github API v3 for Haskell.
55

6-
**This is currently a read-only API.**
7-
8-
Some functions which do not require authentication are also missing; these are functions where the Github API did not work as expected. The full Github API is in beta and constantly improving.
6+
Some functions are missing; these are functions where the Github API did
7+
not work as expected. The full Github API is in beta and constantly
8+
improving.
99

1010
Installation
1111
============

github.cabal

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name: github
77
-- The package version. See the Haskell package versioning policy
88
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
99
-- standards guiding when and how versions should be incremented.
10-
Version: 0.2.1
10+
Version: 0.3.0
1111

1212
-- A short (one-line) description of the package.
1313
Synopsis: Access to the Github API, v3.
@@ -18,8 +18,6 @@ Description: The Github API provides programmatic access to the full
1818
like references and trees. This library wraps all of that, exposing a basic but
1919
Haskell-friendly set of functions and data structures.
2020
.
21-
/Currently this only supports read-only access/.
22-
.
2321
For more of an overview please see the README: <https://github.com/mike-burns/github/blob/master/README.md>
2422

2523
-- The license under which the package is released.

0 commit comments

Comments
 (0)