-
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.
Signed-off-by: Jason Carey (hanumantmk) <jcarey@argv.me>
- Loading branch information
1 parent
2b7bb42
commit 96d48e9
Showing
9 changed files
with
95 additions
and
30 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], [1]) | ||
m4_define([mongoc_minor_version], [0]) | ||
m4_define([mongoc_micro_version], [3]) | ||
m4_define([mongoc_minor_version], [1]) | ||
m4_define([mongoc_micro_version], [0]) | ||
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], [0]) | ||
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], [1.0.0]) | ||
m4_define([libbson_required_version], [1.1.0]) | ||
|
||
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
Submodule libbson
updated
27 files
+6 −4 | CMakeLists.txt | |
+33 −0 | NEWS | |
+55 −0 | build/autotools/LDVersionScript.m4 | |
+4 −4 | build/autotools/Versions.m4 | |
+188 −0 | build/autotools/versions.ldscript | |
+5 −2 | build/rpm/libbson.spec | |
+1 −0 | configure.ac | |
+5 −5 | doc/installing.page | |
+3 −3 | doc/version.page | |
+7 −1 | src/Makefile.am | |
+4 −4 | src/bson/bson-clock.h | |
+4 −4 | src/bson/bson-compat.h | |
+4 −4 | src/bson/bson-context.h | |
+4 −4 | src/bson/bson-endian.h | |
+4 −4 | src/bson/bson-iso8601.c | |
+4 −4 | src/bson/bson-iter.h | |
+4 −4 | src/bson/bson-json.h | |
+4 −4 | src/bson/bson-macros.h | |
+4 −4 | src/bson/bson-md5.h | |
+4 −4 | src/bson/bson-memory.h | |
+4 −4 | src/bson/bson-oid.h | |
+4 −4 | src/bson/bson-reader.h | |
+4 −4 | src/bson/bson-string.h | |
+4 −4 | src/bson/bson-thread-private.h | |
+4 −4 | src/bson/bson-types.h | |
+4 −4 | src/bson/bson-utf8.h | |
+2 −0 | src/libbson.symbols |