From 70562a5920ad9b6ff03ef697c0f90ae569abbd2b Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Wed, 20 Apr 2016 12:16:03 -0700 Subject: [PATCH] Update CHANGES for v0.4.0 release --- CHANGES.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c1dbb94..975c612 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,13 +1,13 @@ # OAuth1 Changelog -## latest - -* Use the HMACSigner as the default signer. This is the same signing behavior as in previous versions. -* Added a Signer field to the Config to allow custom Signer implementations.s -* Added an RSASigner. -* Added missing Authorization Header quotes around OAuth parameter values. Many providers allowed these quotes to be missing. -* Internalized `Signer` (as `auther`) which created Authorization Headers - - `SetAccessTokenAuthHeader`, `SetRequestAuthHeader`, and `SetRequestTokenAuthHeader` are no longer exposed. +## v0.4.0 (2016-04-20) + +* Add a Signer field to the Config to allow custom Signer implementations. +* Use the HMACSigner by default. This provides the same signing behavior as in previous versions (HMAC-SHA1). +* Add an RSASigner for "RSA-SHA1" OAuth1 Providers. +* Add missing Authorization Header quotes around OAuth parameter values. Many providers allowed these quotes to be missing. +* Change `Signer` to be a signer interface. +* Remove the old Signer methods `SetAccessTokenAuthHeader`, `SetRequestAuthHeader`, and `SetRequestTokenAuthHeader`. ## v0.3.0 (2015-09-13)