Skip to content

Commit

Permalink
fixup the CHANGELOG a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
erratic-pattern committed Apr 23, 2012
1 parent d239b86 commit 117e751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
## hs-webdriver 0.2.1

### new features
* Opera configuration now implemented.
* Opera configuration is now implemented.

### Bug fix
* FFLogPref (which was never properly exported due to carelessness) is now removed and replaced by the LogPref type, since both Firefox and Opera config use the same logging preference system. Since only FFLogPref's type and not its constructors were ever properly exported, this isn't considered worthy of a major version bump.
* An issue with the serialization of browser names meant that Chrome and IE weren't working correctly. This is now fixed.
* FFLogPref (which was never properly exported due to carelessness) is now removed and replaced by the LogPref type, because both Firefox and Opera config use the same logging preference values. Since only FFLogPref's type and not its constructors were ever properly exported, this isn't considered worthy of a major version bump.

## hs-webdriver 0.2

Expand Down
2 changes: 1 addition & 1 deletion Test/WebDriver/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -533,10 +533,10 @@ instance Show FailedCommandInfo where
sess = showString sessId . showString " at "
. showString host . showChar ':' . shows port
where
WDSession {wdHost = host, wdPort = port, wdSessId = msid } = errSess i
sessId = case msid of
Just (SessionId sid) -> unpack sid
Nothing -> "<no session id>"
WDSession {wdHost = host, wdPort = port, wdSessId = msid } = errSess i

instance Show StackFrame where
show f = showString (sfClassName f) . showChar '.'
Expand Down

0 comments on commit 117e751

Please sign in to comment.