Skip to content

Commit

Permalink
ChangeLog and version for v2.4 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanxz committed Apr 14, 2014
1 parent 299b51f commit e9f6494
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ PROJECT(SimpleAmqpClient)
# 3. If any interfaces have been added since the last public release, then increment age.
# 4. If any interfaces have been removed since the last public release, then set age to 0.

set(SAC_SOVERSION_CURRENT 5)
set(SAC_SOVERSION_CURRENT 6)
set(SAC_SOVERSION_REVISION 0)
set(SAC_SOVERSION_AGE 3)
set(SAC_SOVERSION_AGE 4)

math(EXPR SAC_SOVERSION_MAJOR "${SAC_SOVERSION_CURRENT} - ${SAC_SOVERSION_AGE}")
math(EXPR SAC_SOVERSION_MINOR "${SAC_SOVERSION_AGE}")
Expand Down
12 changes: 12 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Changes since v2.3 (v2.4):
- Add support for consumer cancellation notification (5d35698)
- Improvements in extra-frame bookkeeping reducing memory useage under certain
conditions (e9de652, f4980bc)
- API support for waiting for multiple consumers at a time (e7e701a)
- Add version header (0fc6cab)
- Add pkg-config on install (a13c99a)
- Add DeclareQueueWithCounts API (Kai Blaschke 7fbcd96)
- Support for C++11 (Alexandre Jacquin 57a8d85)
- Add BasicReject API (Luca Marturana 0c9478e)
- Upgrade gtest to v1.7.0 (8fe82fd)

Changes since v2.2 (v2.3):
NOTE: this release uses new rabbitmq-c interfaces introduced in v0.4.0, thus
requires rabbitmq-c v0.4.0 or later.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Known to work in the following environments:

### Pre-requisites
+ [boost-1.47.0](http://www.boost.org/) or newer (uses chrono, system internally in addition to other header based libraries such as sharedptr and noncopyable)
+ [rabbitmq-c](http://github.com/alanxz/rabbitmq-c) you'll need version 0.4.0 or better.
+ [rabbitmq-c](http://github.com/alanxz/rabbitmq-c) you'll need version 0.4.1 or better.
+ [cmake 2.8+](http://www.cmake.org/) what is needed for the build system
+ [Doxygen](http://www.stack.nl/~dimitri/doxygen/) OPTIONAL only necessary to generate API documentation

Expand Down

0 comments on commit e9f6494

Please sign in to comment.