Skip to content

Commit

Permalink
fixed a typo, updated changelog and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Feb 14, 2013
1 parent 4ced78a commit 83789a4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG
@@ -1,5 +1,21 @@
This is the changelog file for the POCO C++ Libraries.

Release 1.4.6p1 (2013-02-21)
============================

- fixed GH# 71: WebSocket and broken Timeouts (POCO_BROKEN_TIMEOUTS)
- fixed an ambiguity error with VC++ 2010 in Data/MySQL testsuite
- Poco::Net::NetworkInterface now provides the interface index even for IPv4
- added DNS::reload() as a wrapper for res_init().
- On Linux, Poco::Environment::nodeId() first always tries to obtain the
MAC address of eth0, before looking for other interfaces.
- Poco::Net::HTTPSession now always resets the buffer in connect() to clear
any leftover data from a (failed) previous session
- fixed copysign namespace issue in FPEnvironment_DUMMY.h
- fixed a warning in Poco/Crypto/OpenSSLInitializer.h
- added a build configuration for BeagleBoard/Angstrom


Release 1.4.6 (2013-01-10)
==========================

Expand Down Expand Up @@ -1795,4 +1811,4 @@ building the libraries.


--
$Id: //poco/1.4/dist/CHANGELOG#74 $
$Id: //poco/1.4/dist/CHANGELOG#75 $
4 changes: 2 additions & 2 deletions Data/SQLite/src/Utility.cpp
@@ -1,7 +1,7 @@
//
// Utility.cpp
//
// $Id: //poco/1.4/Data/SQLite/src/Utility.cpp#1 $
// $Id: //poco/1.4/Data/SQLite/src/Utility.cpp#2 $
//
// Library: Data/SQLite
// Package: SQLite
Expand Down Expand Up @@ -200,7 +200,7 @@ void Utility::throwException(int rc, const std::string& addErrMsg)
case SQLITE_DONE:
break; // sqlite_step() has finished executing
default:
throw SQLiteException(std::string("Unkown error code: ") + Poco::NumberFormatter::format(rc), addErrMsg);
throw SQLiteException(std::string("Unknown error code: ") + Poco::NumberFormatter::format(rc), addErrMsg);
}
}

Expand Down
17 changes: 17 additions & 0 deletions doc/99100-ReleaseNotes.page
@@ -1,6 +1,23 @@
POCO C++ Libraries Release Notes
AAAIntroduction

!!!Release 1.4.6p1

!!Summary of Changes

- fixed GH# 71: WebSocket and broken Timeouts (POCO_BROKEN_TIMEOUTS)
- fixed an ambiguity error with VC++ 2010 in Data/MySQL testsuite
- Poco::Net::NetworkInterface now provides the interface index even for IPv4
- added DNS::reload() as a wrapper for res_init().
- On Linux, Poco::Environment::nodeId() first always tries to obtain the
MAC address of eth0, before looking for other interfaces.
- Poco::Net::HTTPSession now always resets the buffer in connect() to clear
any leftover data from a (failed) previous session
- fixed copysign namespace issue in FPEnvironment_DUMMY.h
- fixed a warning in Poco/Crypto/OpenSSLInitializer.h
- added a build configuration for BeagleBoard/Angstrom


!!!Release 1.4.6

!!Summary of Changes
Expand Down

0 comments on commit 83789a4

Please sign in to comment.