-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian Hergert
committed
Jun 20, 2014
1 parent
0b5c729
commit d428bff
Showing
10 changed files
with
57 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
m4_define([mongoc_major_version], [0]) | ||
m4_define([mongoc_minor_version], [96]) | ||
m4_define([mongoc_micro_version], [3]) | ||
m4_define([mongoc_micro_version], [4]) | ||
m4_define([mongoc_version], [mongoc_major_version.mongoc_minor_version.mongoc_micro_version]) | ||
|
||
# bump up by 1 for every micro release with no API changes, otherwise | ||
# set to 0. after release, bump up by 1 | ||
m4_define([mongoc_interface_age], [3]) | ||
m4_define([mongoc_interface_age], [4]) | ||
m4_define([mongoc_binary_age], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version)]) | ||
|
||
m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version - mongoc_interface_age)]) | ||
m4_define([lt_revision], [mongoc_interface_age]) | ||
m4_define([lt_age], [m4_eval(mongoc_binary_age - mongoc_interface_age)]) | ||
|
||
m4_define([libbson_required_version], [0.8.3]) | ||
m4_define([libbson_required_version], [0.8.4]) | ||
|
||
m4_define([sasl_required_version], [2.1.6]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Submodule libbson
updated
8 files
+2 −2 | CMakeLists.txt | |
+31 −0 | NEWS | |
+2 −2 | build/autotools/Versions.m4 | |
+4 −1 | build/rpm/libbson.spec | |
+5 −5 | doc/installing.page | |
+1 −1 | doc/version.page | |
+5 −5 | src/bson/bson.c | |
+30 −4 | tests/test-json.c |