Skip to content

Commit

Permalink
docs: add 0.9.0 release note
Browse files Browse the repository at this point in the history
  • Loading branch information
arekkas committed Jun 3, 2017
1 parent d70d882 commit 852cf82
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion HISTORY.md
Expand Up @@ -4,6 +4,7 @@ bumps (`0.1.0` -> `0.2.0`).
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

- [0.9.0](#090)
- [0.8.0](#080)
- [Breaking changes](#breaking-changes)
- [`ClientManager`](#clientmanager)
Expand All @@ -18,6 +19,18 @@ bumps (`0.1.0` -> `0.2.0`).

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## 0.9.0

This patch adds the ability to pass a custom hasher to `compose.Compose`, which is a breaking change. You can pass nil for the fosite default hasher:

```
package compose
-func Compose(config *Config, storage interface{}, strategy interface{}, factories ...Factory) fosite.OAuth2Provider {
+func Compose(config *Config, storage interface{}, strategy interface{}, hasher fosite.Hasher, factories ...Factory) fosite.OAuth2Provider {
```


## 0.8.0

This patch addresses some inconsistencies in the public interfaces. Also
Expand Down Expand Up @@ -119,4 +132,4 @@ id tokens, ...

## 0.1.0

Initial release
Initial release

0 comments on commit 852cf82

Please sign in to comment.