Skip to content

Commit

Permalink
Update metadata for release 2.0.0beta3
Browse files Browse the repository at this point in the history
Change-Id: I3bf508265a18c266e5c51cb309b72a328cf4a5f7
Reviewed-on: http://review.couchbase.org/22709
Tested-by: Sergey Avseyev <sergey.avseyev@gmail.com>
Reviewed-by: Trond Norbye <trond.norbye@gmail.com>
  • Loading branch information
avsej authored and trondn committed Nov 21, 2012
1 parent 8658575 commit 25ba54c
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ AC_SUBST(API_REVISION)
AC_SUBST(API_AGE)

# The actual version numbers for the developers ;)
LCB_VERSION="2.0.0beta2"
LCB_VERSION="2.0.0beta3"
LCB_VERSION_HEX=`echo ${LCB_VERSION} | awk -F. '{printf "0x%0.2d%0.2d%0.2d", $1, $2, $3}'`
AC_SUBST(LCB_VERSION)
AC_SUBST(LCB_VERSION_HEX)
Expand Down
61 changes: 61 additions & 0 deletions packaging/deb/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,64 @@
libcouchbase (2.0.0beta3) stable; urgency=low

[Mark Nunberg]
* Check for EWOULDBLOCK/EINTR on failed send

[Sergey Avseyev]
* Fix build for MinGW
* Try all known plugins for LCB_IO_OPS_DEFAULT in run time
* CCBC-113 Remove unauthorized asserion
* CCBC-114 Lookup the plugin symbol in current executable image
* Apply new packaging scheme
* Fix README formatting
* README: add hacking section
* +1 more space for github Markdown parser
* Do not allow admin operations without authentication
* Reformat code and reorder .gitignore
* Check subcommands more strictly
* CCBC-115 Return zero from do_read_data() if operations_per_call reached
* Timer in libev uses double for interval
* Clarify LCB_DELTA_BADVAL error
* CCBC-118 lcb_error_t member in the http callbacks shouldn't reflect the HTTP response code
* Update binary packages with man files
* CCBC-122 Try to switch another server from backup list on timeout
* CCBC-120 Reformat and refactor lcb_server_purge_implicit_responses()
* CCBC-120 Purge stale OBSERVE packets
* CCBC-124 Output replicas properly
* Allow to use 'cbc-hash' with files
* Remove libtool version from the plugins
* Use dynamic versioning for plugins
* Update destructor setup in windows plugin
* Finish removing libtool version from plugins
* Fix using free'd memory (was introduced in 43971816
* Include .la files in plugin RPMs
* Fix RPM spec: remove extra % sign
* Allow to use gethrtime() from C++
* Allow to reset mock connection
* Rewrite config-test.c using gtest framework
* CCBC-107 Port test from http://review.couchbase.org/13667
* Use public configuration callback instead of vbucket_listener
* libvbucket: read and store thisNode property of node
* CCBC-104 Reconnect config listener
* CCBC-104 Fix illegal memory access
* Update metadata for release 2.0.0beta3

[Trond Norbye]
* CCBC-87: Add documentation about the error codes
* All enums should have explicit values
* Don't end an enum with a ,
* Add lcb_verify_compiler_setup
* Don't use the time_t for win32
* Fix the list should be even, not odd
* Fix bucket-create
* Create man pages for cbc and cbcrc
* CCBC-119: Allow the user to specify a different hash key
* Include the man pages (and pdfs) in the distribution
* Added CONTRIBUTING.md
* Check for endianness during configure
* Refactor: move http constants to its own file

-- Sergey Avseyev <sergey@couchbase.com> Wed, 21 Nov 2012 13:45:28 +0300

libcouchbase (2.0.0beta2) stable; urgency=low

[Sergey Avseyev]
Expand Down
58 changes: 58 additions & 0 deletions packaging/rpm/libcouchbase.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,64 @@ Development files for the Couchbase Client & Protocol Library

%changelog

* Wed Nov 21 2012 Sergey Avseyev <sergey@couchbase.com> - 2.0.0beta3
[Mark Nunberg]
- Check for EWOULDBLOCK/EINTR on failed send

[Sergey Avseyev]
- Fix build for MinGW
- Try all known plugins for LCB_IO_OPS_DEFAULT in run time
- CCBC-113 Remove unauthorized asserion
- CCBC-114 Lookup the plugin symbol in current executable image
- Apply new packaging scheme
- Fix README formatting
- README: add hacking section
- +1 more space for github Markdown parser
- Do not allow admin operations without authentication
- Reformat code and reorder .gitignore
- Check subcommands more strictly
- CCBC-115 Return zero from do_read_data() if operations_per_call reached
- Timer in libev uses double for interval
- Clarify LCB_DELTA_BADVAL error
- CCBC-118 lcb_error_t member in the http callbacks shouldn't reflect the HTTP response code
- Update binary packages with man files
- CCBC-122 Try to switch another server from backup list on timeout
- CCBC-120 Reformat and refactor lcb_server_purge_implicit_responses()
- CCBC-120 Purge stale OBSERVE packets
- CCBC-124 Output replicas properly
- Allow to use 'cbc-hash' with files
- Remove libtool version from the plugins
- Use dynamic versioning for plugins
- Update destructor setup in windows plugin
- Finish removing libtool version from plugins
- Fix using free'd memory (was introduced in 43971816
- Include .la files in plugin RPMs
- Fix RPM spec: remove extra % sign
- Allow to use gethrtime() from C++
- Allow to reset mock connection
- Rewrite config-test.c using gtest framework
- CCBC-107 Port test from http://review.couchbase.org/13667
- Use public configuration callback instead of vbucket_listener
- libvbucket: read and store thisNode property of node
- CCBC-104 Reconnect config listener
- CCBC-104 Fix illegal memory access
- Update metadata for release 2.0.0beta3

[Trond Norbye]
- CCBC-87: Add documentation about the error codes
- All enums should have explicit values
- Don't end an enum with a ,
- Add lcb_verify_compiler_setup
- Don't use the time_t for win32
- Fix the list should be even, not odd
- Fix bucket-create
- Create man pages for cbc and cbcrc
- CCBC-119: Allow the user to specify a different hash key
- Include the man pages (and pdfs) in the distribution
- Added CONTRIBUTING.md
- Check for endianness during configure
- Refactor: move http constants to its own file

* Fri Oct 12 2012 Sergey Avseyev <sergey@couchbase.com> - 2.0.0beta2
[Sergey Avseyev]
- Allow to disable CXX targets
Expand Down
4 changes: 2 additions & 2 deletions win32/libcouchbase/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@

#include <stddef.h>

#define LCB_VERSION_STRING "2.0.0beta2"
#define LCB_VERSION_STRING "2.0.0beta3"
#define LCB_VERSION 0x020000
#define LCB_VERSION_CHANGESET unknown

#define PACKAGE_STRING "libcouchbase 2.0.0beta2"
#define PACKAGE_STRING "libcouchbase 2.0.0beta3"
#include <winsock2.h>
#include <BaseTsd.h>

Expand Down

0 comments on commit 25ba54c

Please sign in to comment.